我想傳遞字符串變量$FileExtension
,如果我傳遞一個值,如$FileExtension = "*.txt"
那麼它工作正常,但如果多個值,如$FileExtension = "*.txt,*.log"
那麼它失敗了。傳遞多個值參數
如何解決這個問題?
Get-ChildItem *.* -Include $FileExtension | Select-String -pattern "$SearchString" | group path |
select name | Out-File $OutputLocation'\'$OutputFile
如果我想搜索子目錄,我該如何在您的代碼中應用? – user1902849
添加-recurse選項到get-childitem命令 – Esperento57