C# 判断某个文件夹内是否为空???

2024-11-23 23:17:35
推荐回答(5个)
回答1:

System.IO.DirectoryInfo di = new System.IO.DirectoryInfo(@"d:\a");
if (di.GetFiles().Length + di.GetDirectories().Length == 0)
{
//目录为空
}

回答2:

string[] files = System.IO.Directory.GetFiles(Path);
判断files是否为空就好了,值判断文件 没判断文件夹

回答3:

这些人太业余!
System.IO.Directory.Exists(FilePath);
返回TRUE,就表示存在!

回答4:

System.IO.Directory.GetFileSystemEntries(path).Length
返回当前目录子文件和子目录的数量

回答5:

kailar 比较专业,