PowerShell Dapatkan semua file di direktori secara rekursif

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