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.
任何想法如何在一个命令中将命令“dir”用于多个文件夹?
dir c:\A | c:\test\B
不管用。我不擅长管...
请改用Get-ChildItemcmdlet,或使用 DIR 并用逗号而不是空格分隔源。DIR 在 PowerShell 中的工作方式与在 DOS 窗口中的工作方式不同。
Get-ChildItem
http://technet.microsoft.com/en-us/library/ee176841.aspx
dir c:\A c:\test\B应该管用。无需管道。
dir c:\A c:\test\B