x复制txt中的所有文件夹和子文件夹(带有路径和空格)
我有一个 txt 文件,其中包含 .jpg 文件的完整路径,我需要使用批处理文件使用 xcopy 复制整个文件夹,包括其中的所有内容
I have a txt file with the full path for .jpg files, I need to xcopy the whole folders including everything inside using xcopy using batch file
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这是一个老问题,但我有同样的问题,上面的答案都不适合我。我必须添加
/s
:复制所有文件、子文件夹和子文件夹中的文件。此处提供更多(且有用)文档:
https:// learn.microsoft.com/en-us/windows-server/administration/windows-commands/xcopy
This is an old question, but I had the same question and neither of the above answers quite did it for me. I had to add
/s
:That copys all files, subfolders, and files in subfolders. More (and helpful) documentation available here:
https://learn.microsoft.com/en-us/windows-server/administration/windows-commands/xcopy
xcopy /?
将向您显示可以使用的选项。您可能需要类似 xcopy C:\path\to\source\directory D:\path\to\destination\ /e /i /yxcopy /?
will show you the options you can use. You probably want something likexcopy C:\path\to\source\directory D:\path\to\destination\ /e /i /y
像这样的事情应该做
Something like this should do it