OPEN CMD
GO TO the directory containing a folder that you wants to hide... using CD (change directory) command;
Then write following command:
>attrib foldername +s +h (this will hide your folder)
>attrib foldername +s -h (this will unhide your folder)
suppose you wants to hide a folder whose name is "image".......and it is in e: directory
then write following command:
>cd/
>cd e:
>attrib image +s +h (it will hide the image folder)
>attrib image +s -h (it will unhide the image folder)
U can also create a batch file that can hide folder by double clicking that file:
simply put all command that we have written in CMD into text file
and SAVE it as .bat extension ........
your file is not shown in the search result.........
GO TO the directory containing a folder that you wants to hide... using CD (change directory) command;
Then write following command:
>attrib foldername +s +h (this will hide your folder)
>attrib foldername +s -h (this will unhide your folder)
suppose you wants to hide a folder whose name is "image".......and it is in e: directory
then write following command:
>cd/
>cd e:
>attrib image +s +h (it will hide the image folder)
>attrib image +s -h (it will unhide the image folder)
U can also create a batch file that can hide folder by double clicking that file:
simply put all command that we have written in CMD into text file
and SAVE it as .bat extension ........
your file is not shown in the search result.........
No comments:
Post a Comment