Get-ChildItem
関数をカスタム関数から呼び出そうとしています。問題は、関数の引数が動的になることです。引数を文字列として使用してPowerShellを呼び出す関数
function Test {
Get-ChildItem $Args
}
私は
Test .\ //this works as Path is taken as default argument value
Test .\ -Force //this doesn't work as expected as it still tries to consider entire thing as Path
Test -Path .\ -Force //same error
どのようにwrap around function
とpass the arguments as it's
を試してみてください?
は、 'は、Get-ChildItemコマンドレット@ Args' – PetSerAl
@PetSerAl Waaay IEXがハックよりも良い、私は1つの配列をスプラットできることを忘れてました。答えでなければならない。 – beatcracker
@PetSerAl、回答を投稿できますか?私はこれがIEXより優れていると信じています。 IEXは 'space separated arguments 'をサポートしていません。これはすべてをサポートします – Reddy