x复制txt中的所有文件夹和子文件夹(带有路径和空格)

发布于 2024-11-25 20:08:40 字数 73 浏览 1 评论 0原文

我有一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

蘸点软妹酱 2024-12-02 20:08:41

这是一个老问题,但我有同样的问题,上面的答案都不适合我。我必须添加 /s

xcopy C:\path\to\source\directory D:\path\to\destination\ /e /i /y /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:

xcopy C:\path\to\source\directory D:\path\to\destination\ /e /i /y /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

ペ泪落弦音 2024-12-02 20:08:41

xcopy /? 将向您显示可以使用的选项。您可能需要类似 xcopy C:\path\to\source\directory D:\path\to\destination\ /e /i /y

xcopy /? will show you the options you can use. You probably want something like xcopy C:\path\to\source\directory D:\path\to\destination\ /e /i /y

挽容 2024-12-02 20:08:41

像这样的事情应该做

FOR /F "delims=" %%i IN (c:\temp\paths.txt) DO xcopy "%%i*.jpg" "C:\test\" /s /y

Something like this should do it

FOR /F "delims=" %%i IN (c:\temp\paths.txt) DO xcopy "%%i*.jpg" "C:\test\" /s /y
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文