[Powershell]ファイルのみの一覧を取得する

超まとめ

ls -Path . | ?{Test-Path $_ -PathType leaf}
ls -Path . | ?{$_.PSIsContainer -eq $false}

逆にフォルダだけ取得する方法

ls -Path . | ?{Test-Path $_ -PathType Container}
ls -Path . | ?{$_.PSIsContainer -eq $true}

コメントを残す