我应该在 .bat 文件中写入什么,以便它查找文件夹中的所有文件并将它们替换为另一个文件中的文件?

发布于 2024-08-24 15:46:57 字数 135 浏览 1 评论 0原文

我应该在 .bat 文件中写入什么,以便它查找文件夹(及其子文件夹)中具有相同名称的所有文件,并将它们替换为另一个文件(来自另一个文件夹)中的文件?

如果我们有1 000 000个文件夹,有近10 000个文件需要替换,有什么快速的方法吗?

What should I write into the .bat file for it to find all files with same names in folder (and it's sub folders) and replace them with file from another file (from another folder)?

Is there any fast way if we have 1 000 000 folders with nearely 10 000 files for replacement?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

醉殇 2024-08-31 15:46:57

尝试

XCOPY /U

/U 将使其仅将文件从源复制到目标中的文件,它不会复制任何尚不存在的文件(这就是我认为您所要求的)。

要将具有相同名称的文件从 c:\weebles 复制到 c:\wobble,您可以

XCOPY c:\weebles c:\wobble /U /Y

指定 /U 仅复制目标中已存在的文件
指定 /Y 进行复制,而无需征得您的许可来覆盖每个文件(很快就会变得乏味)。

有关详细信息,请打开命令提示符并键入

help xcopy

重要:在尝试此操作(或变体)之前,请执行以下任一操作:

  • 目标文件夹的备份
  • 对一些无关紧要的文件夹进行测试

将是耻辱地全力以赴,开始副本然后后悔! :-)

Try

XCOPY /U

/U will make it only copy files from the source to files in the destination, it won't copy any files that do not already exist (which is what I think you are asking for).

To copy files with the same names from c:\weebles to c:\wobble you would do

XCOPY c:\weebles c:\wobble /U /Y

Specify /U to only copy files that already exist in the destination
Specify /Y to copy without asking your permission to overwrite each file (will get tedious really quick).

For more info, open a command prompt and type

help xcopy

IMPORTANT: Before you try this (or a variant) do either:

  • A backup of your destination folder
  • A test on some folders that don't matter

Would be a shame to go all gung ho, start the copy then regret it! :-)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文