Method 1
Very very simple and it will show all the files and folders including the hidden. To do this, just press and hold your shift key and then right click on the folder where you want to see the hidden files. In the right click menu you will get an option like Open Command Window here. Click on it. The command window will open exactly in the folder location. Now keep on pressing your Tab key to see all the files and folders including the hidden.
Method 2
First do the underlined portion of method1. After doing that the command window will open in the target folder. Do one thing just type dir and press enter. It will list all files and folders. Ha ha……….Wait wait wait. No need to be happy. Just look the output, the hidden files and folders are still missing in the result. Oh noooooooo.
Don’t show your sad face to us. Just type the following command and press enter
dir /a:h
Do you want its description ? Ok Fine. The /a indicates what attributes are going to be displayed. Then the “h” indicates to Hidden attributes. Are you getting me ? 🙂
I want to show only hidden folders, not hidden files. Can I do it ?
Oh nice question. The answer is absolutely yes. To show only hidden folders just type the following.
dir /a:hd
Description: Agian the same fundametal applicable here. Just we passed another attribute “d” to show only directories not files. Just online description sufficient to understand. :)
See you next time. Bye.