We can hide any folders using CMD. Also no one can see it eventhough if we enable to show all the hidden files.
1. First of all create a folder
2. Go to command prompt
3. To hide the file here is the code type in the cmd:
Code:
attrib +s +h "Full path of folder"
So here's the tuturial on how to do it:
2. Go to command prompt
3. To hide the file here is the code type in the cmd:
Code:
attrib +s +h "Full path of folder"
[Eg:if you want to hide the folder named "hai" in C drive,Type in CMD as
attrib +s +h "c:\hai" ]
4. Now the file is hidden . Even if you enable to show the hidden files and folder from Folder option the file will be hidden.
5. To reveal the hidden file here is the code type in the cmd:
Code:
attrib -s -h "Full path of folder"
[Eg:attrib -s -h "c:\hai" ]
4. Now the file is hidden . Even if you enable to show the hidden files and folder from Folder option the file will be hidden.
5. To reveal the hidden file here is the code type in the cmd:
Code:
attrib -s -h "Full path of folder"
[Eg:attrib -s -h "c:\hai" ]
Now you superhide your folder.
How can you access it with read/write access?
ReplyDelete