c#获取文件夹中的子文件
c#获取文件夹中的子文件String path = @"X:\xxx\xxx";
//第一种方法
string[] files = Directory.GetFiles(path, "*.txt");
foreach (string file in files
