我有一个代码,用于将所有jpg文件从源移动到目标。第一次代码运行正常,它会移动文件,但如果我再次运行它,则会出现文件已存在的错误。
Traceback (most recent call last):
File "/Users/tom/Downloads/direc.py", line 16, in <module>
shutil.move(jpg, dst_pics)
File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/shutil.py", line 542, in move
raise Error("Destination path '%s' already exists" % real_dst)
shutil.Error: Destination path '/Users/tom/Downloads/Dest/Pictures/Photo3.jpg' already exists
这是我的代码
import os
import glob
import shutil
local_src = '/Users/tom/Downloads/'
destination = 'Dest'
src = local_src + destination
dst_pics = src + '/Pictures/'
print(dst_pics)
for pic in glob.iglob(os.path.join(src, "*.jpg")):
if os.path.isfile(pic):
if not (os.path.isfile(dst_pics + pic)):
shutil.move(pic, dst_pics)
else:
print("File exists")
我能做些什么来覆盖文件或检查文件是否存在并跳过它?
我能够通过遵循@Justas G解决方案来解决它。
以下是解决方案
for pic in glob.iglob(os.path.join(src, "*.jpg")):
if os.path.isfile(pic):
shutil.copy2(pic, dst_pics)
os.remove(pic)
答案 0 :(得分:5)
使用复制insted,它应该自动覆盖文件
shutil.copy(sourcePath, destinationPath)
然后你需要删除原始文件。请注意,shutil.copy
不会复制或创建目录,因此您需要确保它们存在。
如果这也不起作用,您可以手动检查文件是否存在,删除它并移动新文件:
要检查该文件是否存在,请使用:
from pathlib import Path
my_file = Path("/path/to/file")
if my_file.exists():
检查路径中存在的内容
if my_file.is_dir():
检查目录是否存在
if my_file.is_file():
检查文件是否存在
要删除包含其所有内容的目录,请使用:
shutil.rmtree(path)
或删除单个文件
os.remove(path)
,然后逐个移动
答案 1 :(得分:1)
除了上面的代码外,我还将文件夹移动到现有目录中,并且此冲突将产生错误,因此我建议使用shutil.copytree()
shutil.copytree('path_to/start/folder', 'path_to/destination/folder', dirs_exist_ok=True)
必须使用dirs_exist_ok=True
才能覆盖文件,否则会出现错误。