在目录c#中查找具有匹配模式的文件?

前端之家收集整理的这篇文章主要介绍了在目录c#中查找具有匹配模式的文件?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
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);

            }

我的上述程序适用于单一模式.

我正在使用上面的程序来查找具有匹配模式的目录中的文件但在我的情况下我有多个模式所以我需要将字符串模式变量中的多个模式作为数组传递但我不知道我是怎么回事可以在Regex.Match中操纵这些模式.

谁能帮我?

解决方法

你可以在正则表达式中加一个OR:
string pattern = @"(23456780|otherpatt)";
原文链接:https://www.f2er.com/csharp/97572.html

猜你在找的C#相关文章