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