.net 模糊匹配路径

string[] fileNames = Directory.GetFiles("D:/", "*1.txt"); // 路径,模糊文件名 ; 返回符合的文件名(string数组)

foreach (var path in fileNames)
{
  File.Delete(path); //删掉或者做其他操作
}

 

posted on 2014-12-09 10:15  邓绍俊  阅读(453)  评论(0编辑  收藏  举报

导航