问题描述
什么是语法上的 Directory.GetFiles设置的多个文件扩展名作为
?例如过滤掉文件的的.aspx 和的.ascx 的扩展。是searchPattern
()
// TODO:设置该字符串'是searchPattern'只与获取文件
//扩展'.ASPX'和'的.ascx。
VAR filteredFiles = Directory.GetFiles(路径,是searchPattern);
更新: LINQ是不是一种选择,它必须是一个是searchPattern
传入的GetFiles
,在这个问题中指定。
我相信没有开箱即用的解决方案,这就是Directory.GetFiles方法的限制。
这是相当容易的,虽然写你自己的方法,这里是一个example.
在code可能是:
What is the syntax for setting multiple file-extensions as searchPattern
on Directory.GetFiles()
? For example filtering out files with .aspx and .ascx extensions.
// TODO: Set the string 'searchPattern' to only get files with
// the extension '.aspx' and '.ascx'.
var filteredFiles = Directory.GetFiles(path, searchPattern);
Update: LINQ is not an option, it has to be a searchPattern
passed into GetFiles
, as specified in the question.
I believe there is no "out of the box" solution, that's a limitation of the Directory.GetFiles method.
It's fairly easy to write your own method though, here is an example.
The code could be:
这篇关于多文件扩展名是searchPattern的System.IO.Directory.GetFiles的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!