20
System.IO.Directory.GetFilesの複数のファイル拡張子searchPattern
複数のファイル拡張子をsearchPatternオンに設定する構文は何Directory.GetFiles()ですか?たとえば、拡張子が.aspxおよび.ascxのファイルを除外します。 // TODO: Set the string 'searchPattern' to only get files with // the extension '.aspx' and '.ascx'. var filteredFiles = Directory.GetFiles(path, searchPattern); 更新:LINQはオプションではありません。質問で指定されているように、それをにsearchPattern渡す必要がありGetFilesます。