0

次のフィルターは、.properties ファイルのみが検査され、.sh などの他のファイルが検査されていることを確認するためのものです。フィルターの間違いに気付く人はいますか?

Get-ChildItem -Path $directoryToTarget -Filter "*.properties" -Recurse | where { !$_.PSIsContainer } | % { 

ありがとうございました!

4

1 に答える 1

1

私はあなたが望むと思います -含む:

Get-ChildItem -Path $directoryToTarget -Include *.properties -Recurse | where { !$_.PSIsContainer } | % { 
于 2013-09-05T11:27:02.783 に答える