将源文件夹和目标文件夹之间的差异复制到第三个文件夹
如何使用 robocopy 仅将 2 个文件夹之间的差异复制到第三个文件夹(而不是目标文件夹)?
因此,如果“SourceFolder”包含 FileA 、 FileB 、 FileC 并且“DestinationFolder”包含 FileA 和 FileB ,我希望看到“DifferencesFolder”包含 FileC 。
How can I use robocopy to copy only the difference between 2 folders to a third folder (and not the destination folder)?
So if "SourceFolder" contains FileA , FileB , FileC and "DestinationFolder" contains FileA and FileB , I would like to see "DifferencesFolder" containing FileC.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 WinMerge 生成一个批处理文件来比较文件、创建列表,然后循环列表并复制文件。
You could have a batch file with WinMerge comparing the files, creating a list and then looping the list and copying files.