System.IO.DirectoryInfo di = new System.IO.DirectoryInfo(@"d:\a");
if (di.GetFiles().Length + di.GetDirectories().Length == 0)
{
//目录为空
}
string[] files = System.IO.Directory.GetFiles(Path);
判断files是否为空就好了,值判断文件 没判断文件夹
这些人太业余!
System.IO.Directory.Exists(FilePath);
返回TRUE,就表示存在!
System.IO.Directory.GetFileSystemEntries(path).Length
返回当前目录子文件和子目录的数量
kailar 比较专业,