基本问题,因为我正在学习powershell。目前我有一个脚本,以简洁的格式为我提供目录的输出。我想将结果写入文件而不是控制台。我似乎无法弄清楚Out-File的正确用法。我已经在脚本中尝试了它并在运行时尝试将其作为扩展。任何帮助将不胜感激。
get-childitem "A:\data\set1" -recurse | where {$_.extension -eq ".mp3"} | % {
Write-Host $_.FullName}
答案 0 :(得分:0)
您不需要使用Write-Host:
get-childitem "A:\data\set1" -recurse |
where {$_.extension -eq ".mp3"} |
% {$_.FullName} |
Out-File ./list.txt