首页 > 代码库 > .net 模糊匹配路径

.net 模糊匹配路径

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

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

 

.net 模糊匹配路径