用 Directory.GetFiles 过滤多种类型的文件

  • A+
所属分类:.NET技术
摘要

原文作者不让转载,就发个链子这里吧,大家自己过去看。https://codedefault.com/s/how-do-i-call-directory-getfiles-with-multiple-filters-in-csharp-application/

原文作者不让转载,就发个链子这里吧,大家自己过去看。

https://codedefault.com/s/how-do-i-call-directory-getfiles-with-multiple-filters-in-csharp-application/

 

用作备份。这里简单说一下思路,就是 Directory.GetFiles.Where 中使用 Lambda 表达式来过滤。

再细节一点,一种在 Where 中 用到 .EndWith,另一种是在 Where 中用到 Regex.IsMatch 的正则表达式。

比如,要过滤出.jpg/.png/.tiff/.bmp/.gif 这些文件,那么这条正则表达式就是:

"^.+.(jpg|png|bmp|gif|tiff)$"