我应该在 .bat 文件中写入什么,以便它查找文件夹中的所有文件并将它们替换为另一个文件中的文件?
我应该在 .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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试
/U 将使其仅将文件从源复制到目标中的文件,它不会复制任何尚不存在的文件(这就是我认为您所要求的)。
要将具有相同名称的文件从 c:\weebles 复制到 c:\wobble,您可以
指定 /U 仅复制目标中已存在的文件
指定 /Y 进行复制,而无需征得您的许可来覆盖每个文件(很快就会变得乏味)。
有关详细信息,请打开命令提示符并键入
重要:在尝试此操作(或变体)之前,请执行以下任一操作:
将是耻辱地全力以赴,开始副本然后后悔! :-)
Try
/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
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
IMPORTANT: Before you try this (or a variant) do either:
Would be a shame to go all gung ho, start the copy then regret it! :-)