PowerShell otrzymuje wszystkie pliki w katalogu rekurencyjnie

Get-ChildItem -Recurse -Path $path | % {
    Write-Output $_.FullName
}
Michu44