Is there any way that I can programmatically create (and I guess access) hidden folders on a storage device from within c#?
using System.IO; string path = @"c:folders ewfolder"; // or whatever if (!Directory.Exists(path)) { DirectoryInfo di = Directory.CreateDirectory(path); di.Attributes = FileAttributes.Directory | FileAttributes.Hidden; }
1.4m articles
1.4m replys
5 comments
57.0k users