根据上次修改日期比较两个文件夹
我有两个文件夹 A 和 B,它们包含相同的文件夹结构和文件,但文件夹 B 包含修改后的文件。这两个文件夹也包含子文件夹。 我想检查文件夹 B 中哪些文件被修改,并将其复制到另一个文件夹 C 中。 如何使用 cmd/shell 脚本实现此目的?
I have two folders A and B, which contain identical folder structure and files, but Folder B contains modified files. Both folders contain subfolders too.
I want to check which files are modified in folder B and copy it to a different folder C.
How can I achieve this using a cmd/shell script?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
AFAIK rsync 和 unison 无法满足您的需求,因为您希望将更改转到第三个文件夹 C。
此代码未经测试:
AFAIK rsync and unison can't handle your needs, since you want the changes to go to a third folder C.
This code is untested:
试试这个:
Try this: