44

有什么方法可以从 c# 中以编程方式在存储设备上创建(我猜是访问)隐藏文件夹?

4

5 回答 5

121
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; 
}
于 2008-09-18T13:12:05.357 回答
30

是的你可以。照常创建目录,然后在其上设置属性。例如

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 |= FileAttributes.Hidden;    
}
于 2008-09-18T13:12:38.943 回答
7
CreateHiddenFolder(string name)  
{  
  DirectoryInfo di = new DirectoryInfo(name);  
  di.Create();  
  di.Attributes |= FileAttributes.Hidden;  
}  
于 2008-09-18T13:21:25.880 回答
4
string path = @"c:\folders\newfolder"; // or whatever 
if (!System.IO.Directory.Exists(path)) 
{ 
    DirectoryInfo di = Directory.CreateDirectory(path); 
    di.Attributes = FileAttributes.Directory | FileAttributes.Hidden; 
}

这里

于 2008-09-18T13:14:03.043 回答
-2

仅获取根文件夹路径的代码。

就像如果我们有 C:/Test/ C:/Test/Abc C:/Test/xyz C:/Test2/ C:/Test2/mnp

它将返回根文件夹路径,即 C:/Test/ C:/Test2/

            int index = 0;
            while (index < lst.Count)
            {
                My obj = lst[index];
                lst.RemoveAll(a => a.Path.StartsWith(obj.Path));
                lst.Insert(index, obj );
                index++;                    
            }
于 2015-02-10T16:43:59.750 回答