PowerShell Obtenha todos os arquivos em diretório recursivamente

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