Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
154 views
in Technique[技术] by (71.8m points)

How to find hidden file/&folder with cmd command, whose name I have forgotten?

I've hidden a folder with cmd command using attrib, but I forgot the name of that folder. I know the path. Now, How I can find that hidden folder?

question from:https://stackoverflow.com/questions/65598507/how-to-find-hidden-file-folder-with-cmd-command-whose-name-i-have-forgotten

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

You can get the list of hidden folders using this command

dir /a    To list all files and folders.
dir /a:d   for all directories.
dir /a:h  for all hidden files.

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...