vote up 3 vote down star

Is there any way that I can programmatically create (and I guess access) hidden folders on a storage device from within c#?

flag

retagged, as this is not a C# language-specific question – Jay Bazuzi Sep 18 '08 at 14:35

4 Answers

vote up 14 vote down check
using System.IO; 

string path = @"c:\folders\newfolder"; // or whatever 
if (!Directory.Exists(path)) 
{ 
DirectoryInfo di = Directory.CreateDirectory(path); 
di.Attributes = FileAttributes.Directory | FileAttributes.Hidden; 
}
link|flag
1  
First result on google – Tom Ritter Sep 18 '08 at 13:12
vote up 7 vote down

Yes you can. Create the directory as normal then just set the attributes on it. E.g.

DirectoryInfo di = new DirectoryInfo(@"C:\SomeDirectory");

//See if directory has hidden flag, if not, make hidden

if( (di.Attributes & FileAttributes.Hidden) != FileAttributes.Hidden)

{

     //Add Hidden flag

     di.Attributes = di.Attributes | FileAttributes.Hidden;

 }
link|flag
vote up 2 vote down
string path = @"c:\folders\newfolder"; // or whatever 
if (!System.IO.Directory.Exists(path)) 
{ 
    DirectoryInfo di = Directory.CreateDirectory(path); 
    di.Attributes = FileAttributes.Directory | FileAttributes.Hidden; 
}

From here.

link|flag
vote up 3 vote down

CreateHiddenFolder(string name)
{
DirectoryInfo di = new DirectoryInfo(name);
di.Create();
di.Attributes |= FileAttributes.Hidden;
}

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.