Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
运行此 powershell 命令时
Get-ChildItem -Recurse -Include *.txt
您在输出中获得多个表,每个目录一个表。
我可以使用什么方法将多个表合并为一个表?
您将需要选择所需的属性。否则,您将获得每个子文件夹的单独列表。你可以尝试这样的事情:
PS C:>dir c:\scripts -recurse -include *.txt | 选择模式、上次写入时间、长度、全名 | 格式表-自动