Windows – List all hidden folders/files in Windows (7)

file managementwindows 7

A long time ago, I remember hiding some really personal files on my computer. Something that nobody could ever find, so I buried them down pretty darn good.

Now to my problem, I don't remember where.

Do anyone know a way to scan a drive and list all hidden folders and/or files?

I know how to view hidden files in Windows, but as far as I know, there is no way to search for them? I've been looking for a program, but I couldn't find one – and now I'm here, asking the experts. 😉

I'd really appreciate any tips.

Best Answer

Open a command prompt and change directory to the root of your drive. Then run:

dir /S /A:H > hidden.txt

This will get you a list of all of the hidden files on that drive and save that list in a file called hidden.txt.

Note: This does NOT search for all hidden files NAMED "hidden.txt".

Related Question