将多个表组合到一个表中

时间:2012-04-09 17:03:27

标签: powershell

运行此powershell命令时

Get-ChildItem -Recurse -Include *.txt

输出中有多个表,每个目录一个表。

我可以使用什么方法将多个表组合到一个表中?

1 个答案:

答案 0 :(得分:3)

您需要选择所需的属性。否则,您将获得每个子文件夹的单独列表。你可以尝试这样的事情:

PS C:> dir c:\ scripts -recurse -include * .txt |选择Mode,LastWriteTime,Length,FullName | format-table -auto