[Powershell]フォルダ以下の全てのフォルダをフルパスでリストアップする

スクリプト例

カレントフォルダ以下の全てのフォルダをフルパスでリストアップします。
ファイルはリストアップしません。

ls -Recurse | ?{test-path -LiteralPath $_.fullname -PathType Container} | %{$_.fullname}

コメントを残す