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那些图案。
谁能帮我?