csharp 查找并过滤目录中的文件

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了csharp 查找并过滤目录中的文件相关的知识,希望对你有一定的参考价值。

 //grab all files in directory and filter them by using the extensions               
  string[] extensions = { ".xml", ".raw", ".img", ".bin", ".cor", ".sgf" };
  
  //linq query to get files, change SearchOption accordingly
   var files = Directory.EnumerateFiles(hsFolderPath, "*.*", SearchOption.TopDirectoryOnly)
                    .Where(s => !extensions.Any(ext => ext == Path.GetExtension(s))).ToList();

以上是关于csharp 查找并过滤目录中的文件的主要内容,如果未能解决你的问题,请参考以下文章

linux中find与rm实现查找并删除目录或文件

csharp 从Unity3D中的CoherentUI浏览器获取PCM音频数据,并通过Unity音频过滤器播放。

grep查找过滤指定目录或文件方法

在当前目录下递归的查找包含指定字符串的文件

如何查找特定的数字长度,并使用 Notepad++ 删除/过滤其余部分?

查找不在当前目录中的文件的路径并逐个访问该文件夹中的文件 - Python