找到匹配的文件夹然后复制文件和子文件夹
我是 Python 新手,想要执行一项任务...我需要比较两个文件夹 dirfolder1 和 dirfolder2 中的文件夹名称...比较它们中的文件夹,如果它们匹配...复制匹配文件夹内的文件和子文件夹...
感谢您的帮助。
达迪。
Am new in Python and would like to do a task... I need to compare folder names from two folders dirfolder1 and dirfolder2... compare the folders in them and if they match...copy files and sub folders inside that matched folder...
thanks for your help.
Daddih.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以执行如下操作:
基本上,遍历每个目录,创建其子目录列表,比较它们,对于匹配项,将它们复制(如果有任何子目录,则使用复制树)到第三个位置。
You could do something like the following:
Basically, walk through each directory creating a list of its subdirectories, compare them, and for the matches, copy them (using copytree in case there are any subdirectories) into a third location.