如何将此脚本的结果写入文件?

时间:2015-01-24 14:31:44

标签: powershell directory output

基本问题,因为我正在学习powershell。目前我有一个脚本,以简洁的格式为我提供目录的输出。我想将结果写入文件而不是控制台。我似乎无法弄清楚Out-File的正确用法。我已经在脚本中尝试了它并在运行时尝试将其作为扩展。任何帮助将不胜感激。

get-childitem "A:\data\set1" -recurse | where {$_.extension -eq ".mp3"} | % {
 Write-Host $_.FullName}

1 个答案:

答案 0 :(得分:0)

您不需要使用Write-Host:

get-childitem "A:\data\set1" -recurse | 
  where {$_.extension -eq ".mp3"} | 
  % {$_.FullName} | 
  Out-File ./list.txt