複数のファイル拡張子を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
ます。