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

スクリプト例

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

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

コメントを残す