我需要在目录中复制文件和目录。假设只有一层。
有一个目录 C:\AAAA 包含 5 个其他目录(没有其他子目录的子目录)和 7 个文件。
当我打电话时:
System.IO.Directory.GetFileSystemEntries("C:\\AAAA");
它返回一个字符串数组。它将包含按字典排序顺序排序的条目。因此,当我调用 for-each 循环时:
foreach(string path in System.IO.Directory.GetFileSystemEntries("C:\\AAAA"))
{
//how to determine path is dictonay or file??
}
那么从 System.IO.Directory.GetFileSystemEntries("C:\AAAA") 返回的数组中,如何确定给定路径是文件路径还是目录?