PowerShell obtient tous les fichiers dans le répertoire récursivement

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