string fileName = "";
string sourcePath = @"C:\vish";
string targetPath = @"C:\SR";
string sourceFile = System.IO.Path.Combine(sourcePath, fileName);
string destFile = System.IO.Path.Combine(targetPath, fileName);
string pattern = @"23456780";
var matches = Directory.GetFiles(@"c:\vish")
.Where(path => Regex.Match(path, pattern).Success);
foreach (string file in matches)
{
Console.WriteLine(file);
fileName = System.IO.Path.GetFileName(file);
Console.WriteLine(fileName);
destFile = System.IO.Path.Combine(targetPath, fileName);
System.IO.File.Copy(file, destFile, true);
}
我上面的程序适用于单一模式。
我正在使用上面的程序在具有匹配模式的目录中查找文件,但在我的情况下,我有多个模式,所以我需要将string pattern
变量中的多个模式作为数组传递,但我不知道如何操作Regex.Match 中的那些模式。
谁能帮我?