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」を1つのコマンドで複数のフォルダに使用する方法はありますか?
dir c:\A | c:\test\B
動かない。私はパイプが苦手です...
代わりにコマンドレットを使用するGet-ChildItemか、DIRを使用して、ソースをスペースではなくコンマで区切ります。PowerShellでは、DIRはDOSウィンドウと同じようには機能しません。
Get-ChildItem
http://technet.microsoft.com/en-us/library/ee176841.aspx
dir c:\A c:\test\B動作するはずです。パイプは必要ありません。
dir c:\A c:\test\B