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.
forfilesのWindowsコマンドを使用して、ディレクトリとすべてのサブディレクトリをコピーします。そうするために、私はこれを試しました:
forfiles /S /P %myDirectoryPath% /C "CMD /C xcopy @path %NewPath% /Y /V /E"
ただし、サブディレクトリに含まれるすべてのファイルは、メインディレクトリのファイルと同じフォルダにコピーされます。
どうすれば解決できますか?
ありがとう。
xcopyディレクトリツリーのコピーに使用できるはずです
xcopy
xcopy %myDirectoryPath% %NewPath% /t /e
または、robocopy
robocopy
robocopy %myDirectoryPath% %NewPath% /e /create