我想访问一堆文件夹中的某些特定文件夹,然后对访问的文件夹执行复制,移动等操作。 enter image description here
准确地说,我想将E01复制到其他目标文件夹中的E12,并将E19复制到特定文件夹中。
from dirsync import sync
sourcepc49 = '/mnt/pc49'
targetpc49 = '/share/Festplatte/Saqib/destpc49'
sync(sourcepc49, targetpc49, 'sync', purge = True)
sourcepc70 = '/mnt/pc70/skt/'
targetpc70 = '/share/Festplatte/Saqib/destpc70'
sync(sourcepc70, targetpc70, 'sync', purge = True)
使用上面的代码并提供特定的文件夹路径,我能够完成上述任务,但是对于多个文件夹(可能成百上千个),以后,为每个文件夹分别编写代码和当然,这是不明智的。 你们有什么建议或代码行可以建议更有效地做到这一点? 谢谢,期待您的答复。