标签: windows powershell powershell-v2.0 cmdlets cmdlet
我知道我们可以在Powershell V3.0中使用参数-File但是如何在Powershell V2中只获取带有Get-childitem cmdlet的文件?
答案 0 :(得分:5)
您可以使用Where-Object cmdlet检查PSIsContainer属性:
PSIsContainer
Get-ChildItem | Where-Object { !$_.PSIsContainer }