hide folder using dos command
-
Hi All I want to hide a folder using ms dos command. Any one knows what is the command and please don't forget to mention the command to make it visible. :) Thanks in advance.
v
Hello again :) I just looked abit at mkdir and md, none of them seem to have hidden params (i assume you mean the normal hidden attribute?) There might be unusual commands to do that though, otherwise you might be able to use cscript from cmd. Maybe something like this[^] If you dont want to do that, just create a C++ program which you call from cmd which does the work for you... :)
//Johannes
-
Hello again :) I just looked abit at mkdir and md, none of them seem to have hidden params (i assume you mean the normal hidden attribute?) There might be unusual commands to do that though, otherwise you might be able to use cscript from cmd. Maybe something like this[^] If you dont want to do that, just create a C++ program which you call from cmd which does the work for you... :)
//Johannes
Hi, the ATTRIB command is used to set or clear file/dir attributes, "hidden" is one of them. :)
Luc Pattyn [Forum Guidelines] [My Articles]
This month's tips: - before you ask a question here, search CodeProject, then Google; - the quality and detail of your question reflects on the effectiveness of the help you are likely to get; - use PRE tags to preserve formatting when showing multi-line code snippets.
-
Hi, the ATTRIB command is used to set or clear file/dir attributes, "hidden" is one of them. :)
Luc Pattyn [Forum Guidelines] [My Articles]
This month's tips: - before you ask a question here, search CodeProject, then Google; - the quality and detail of your question reflects on the effectiveness of the help you are likely to get; - use PRE tags to preserve formatting when showing multi-line code snippets.
-
Hello again :) I just looked abit at mkdir and md, none of them seem to have hidden params (i assume you mean the normal hidden attribute?) There might be unusual commands to do that though, otherwise you might be able to use cscript from cmd. Maybe something like this[^] If you dont want to do that, just create a C++ program which you call from cmd which does the work for you... :)
//Johannes
Hi !! Thanks for the reply. I will work around this. One more question. Can i set password for any folder in windows XP ? If yes then how ? Thanks in advance
v
-
Hi !! Thanks for the reply. I will work around this. One more question. Can i set password for any folder in windows XP ? If yes then how ? Thanks in advance
v
-
To make folder password protected, it seems u may need to write low level driver. Not sure. I also wanna do the same.
Come online at:- jubinc@skype
i am in a office so cant come on skype right now, sorry
v
-
To make folder password protected, it seems u may need to write low level driver. Not sure. I also wanna do the same.
Come online at:- jubinc@skype
I do not think we need to write any program. I guess there is some command in ms dos to perform this task. My friend did that way back long but he also has no idea about it now.
v
-
I do not think we need to write any program. I guess there is some command in ms dos to perform this task. My friend did that way back long but he also has no idea about it now.
v
-
I do not think we need to write any program. I guess there is some command in ms dos to perform this task. My friend did that way back long but he also has no idea about it now.
v
ATTRIB has been around since the days of DOS 2.0 THere is no command to "password protect" a folder. None of the file systems Windows supports offers this kind of functionality. It is possible, however, to write a driver that creates a file and treats it like an extension to the file system. If you're comfortable with C++ and writing drivers for Windows, great, have a nice time. If not, you've jumped into the ocean without knowing how to swim.
A guide to posting questions on CodeProject[^]
Dave Kreskowiak Microsoft MVP Visual Developer - Visual Basic
2006, 2007 -
ATTRIB has been around since the days of DOS 2.0 THere is no command to "password protect" a folder. None of the file systems Windows supports offers this kind of functionality. It is possible, however, to write a driver that creates a file and treats it like an extension to the file system. If you're comfortable with C++ and writing drivers for Windows, great, have a nice time. If not, you've jumped into the ocean without knowing how to swim.
A guide to posting questions on CodeProject[^]
Dave Kreskowiak Microsoft MVP Visual Developer - Visual Basic
2006, 2007 -
Hi All I want to hide a folder using ms dos command. Any one knows what is the command and please don't forget to mention the command to make it visible. :) Thanks in advance.
v
So, did you get your answer? If you have not. The command is ATTRIB :)