問題タブ [powershell-7.0]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
powershell - 「[」を含む名前のディレクトリでは「ForEach-Object -Parallel」を使用できません
"[" を含む名前のディレクトリでForEach-Object -Parallelコマンドレットを使用すると、WildcardPatternException が返されます。-Parallelを削除すると、正常に実行されます。
いくつかのディレクトリを作成し、次のコマンドを実行しました。1..5 | ForEach-Object -Parallel {Write-Host $_}
実行したディレクトリごとの戻り値の違いは次のとおりです。
WildcardPatternException が返されます。
ItemNotFoundException が返されます。
正常に実行され、5 つの値が返されます。
ディレクトリの名前を変更せずにこれを解決する方法はありますか?