gpt4 book ai didi

python - 如何跳过子文件夹中的现有文件并仅复制新文件

转载 作者:太空宇宙 更新时间:2023-11-03 16:49:41 30 4
gpt4 key购买 nike

我使用shutil copytree复制文件夹和主文件夹内的所有子文件夹

import shutil
import sys
import os
import re

SOURCE_FOLDER = sys.argv[1]
DESTINATION_FOLDER = sys.argv[2]


def copyDirectory(SOURCE_FOLDER, DESTINATION_FOLDER):
try:
print SOURCE_FOLDER
print DESTINATION_FOLDER
shutil.copytree(SOURCE_FOLDER, DESTINATION_FOLDER)
# Directories are the same
#except:
# print "Not copied"
except shutil.Error as e:
print('Directory not copied. Error: %s' % e)
# Any error saying that the directory doesn't exist
except OSError as e:
print('Directory not copied. Error: %s' % e)

copyDirectory(SOURCE_FOLDER,DESTINATION_FOLDER)

问题是如果目录存在就会抛出错误

Directory not copied. Error: [Errno 17] File exists: 'destination'

我想要的是,如果目录已经存在,它想要检查所有子目录,如果子目录也存在,它应该检查其中的所有文件,并且应该跳过现有文件并复制该子目录中的新文件,如果子目录不存在,那么它应该复制该子目录

注意:子目录可能是嵌套的(子目录的子目录)。

但是上面的脚本不起作用,我应该在该脚本中添加什么?

最佳答案

shutil.copytree 不是为了跳过现有目标文件和目录而编写的。来自文档

The destination directory must not already exist.

您需要编写自己的解决方案。现有的 copytree 代码是一个好的开始。

关于python - 如何跳过子文件夹中的现有文件并仅复制新文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35980299/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com