In this Tutorial , I will teach you how to Hide your personal folders and files with command prompt ( CMD ). Actually this is more helpful than other simple folder hiding method because by this method, you can easily hide or unhide your personal folders and files even " Show Hidden Files " option of windows will not be able to show that file. So, your personal files will remain safe :)Enjoy it and Don't Forget To Comment !
How To Hide ??
- Open Command Prompt (CMD)
- Copy the given code, right click at cmd window, then paste
attrib +s +h "Full path of folder"
( Change "Full path of folder" with your file path, for example: "C:\Users\H4CK3R\Desktop\itgooglepk.txt", i am hiding itgooglepk.txt. )- Now, Press enter and your file is now hidden.
How To Unhide ??
- Open Command Prompt (CMD)
- Copy the code, right click at cmd window and paste it.
attrib -s -h "Full path of folder"
( Change "Full path of folder" with your file path, for example: "C:\Users\H4CK3R\Desktop\itgooglepk.txt", i am unhiding itgooglepk.txt.)
Your file is back again successfully.
Note : Remember that both codes are different. The sign are changed (+ is changed into -).