Is there any way that I can programmatically create (and I guess access) hidden folders on a storage device from within c#?
CreateHiddenFolder(string name) { DirectoryInfo di = new DirectoryInfo(name); di.Create(); di.Attributes |= FileAttributes.Hidden; }