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.
ある場所 (C:\Users\Username など) のすべてのフォルダー、ファイル、およびサブフォルダーを取得し、それをネットワーク共有上のテキスト ドキュメント ( \server\share\document.txt)。
ご協力ありがとうございました!
次のコマンドは、指定されたディレクトリとすべてのサブディレクトリ内のすべてのファイルを表示し、出力をサーバー共有上のファイルにリダイレクトします。
dir /s c:\Users\Username > \\server\share\document.txt
ファイル名にフル パスが含まれるファイルを表示する場合は、/b オプションを追加します。
dir /s /b c:\Users\Username > \\server\share\document.txt