static List<string> list = new List<string>();
static void GetFile(string path)
{
DirectoryInfo info = new DirectoryInfo(path);
info.GetDirectories().ToList().ForEach(s => GetFile(s.FullName + "\\"));
info.GetFiles().ToList().ForEach(s => list.Add(s.FullName));
}
C#获取目录下及子目录所有文件
最新推荐文章于 2024-08-29 15:58:32 发布