Python 3.7 - 如何检查文件是否存在并重命名
Python 3.7 - How to check if file exists and rename
我想知道如何检查源文件夹中的文件是否存在于目标文件夹中,然后将文件复制到目标文件夹。
如果目标文件夹中存在源文件夹中的文件,将源文件夹中的文件重命名为“_1”或_i+1,然后将其复制到目标文件夹。
例如(不会是 .txt,仅以此为例,文件本质上是动态的):
我想将 file.txt 从文件夹 a 复制到文件夹 b。
file.txt 已存在于文件夹 b a 中。如果我试图将 file.txt 复制到文件夹 b,我会收到复制错误。
将 file.txt 重命名为 file_1.txt复制file_1.txt到文件夹b b。如果 file_1.txt 存在,则使其成为 file_2.txt
我目前的情况是这样的:
for filename in files:
filename_only = os.path.basename(filename)
src = path + "\" + filename
failed_f = pathx + "\Failed\" + filename
# This is where I am lost, I am not sure how to declare the i and add _i + 1 into the code.
if path.exists(file_path):
numb = 1
while True:
new_path = "{0}_{2}{1}".format(*path.splitext(file_path) + (numb,))
if path.exists(new_path):
numb += 1
shutil.copy(src, new_path)
else:
shutil.copy(src, new_path)
shutil.copy(src, file_path)
在此先致谢。
import os
for filename in files:
src = os.path.join(path, filename)
i = 0
while True:
base = os.path.basename(src)
name = base if i == 0 else "_{}".format(i).join(os.path.splitext(base))
dst_path = os.path.join(dst, name)
if not os.path.exists(dst_path):
shutil.copy(src, dst_path)
break
i += 1
我想知道如何检查源文件夹中的文件是否存在于目标文件夹中,然后将文件复制到目标文件夹。
如果目标文件夹中存在源文件夹中的文件,将源文件夹中的文件重命名为“_1”或_i+1,然后将其复制到目标文件夹。
例如(不会是 .txt,仅以此为例,文件本质上是动态的):
我想将 file.txt 从文件夹 a 复制到文件夹 b。
file.txt 已存在于文件夹 b a 中。如果我试图将 file.txt 复制到文件夹 b,我会收到复制错误。
将 file.txt 重命名为 file_1.txt复制file_1.txt到文件夹b b。如果 file_1.txt 存在,则使其成为 file_2.txt
我目前的情况是这样的:
for filename in files:
filename_only = os.path.basename(filename)
src = path + "\" + filename
failed_f = pathx + "\Failed\" + filename
# This is where I am lost, I am not sure how to declare the i and add _i + 1 into the code.
if path.exists(file_path):
numb = 1
while True:
new_path = "{0}_{2}{1}".format(*path.splitext(file_path) + (numb,))
if path.exists(new_path):
numb += 1
shutil.copy(src, new_path)
else:
shutil.copy(src, new_path)
shutil.copy(src, file_path)
在此先致谢。
import os
for filename in files:
src = os.path.join(path, filename)
i = 0
while True:
base = os.path.basename(src)
name = base if i == 0 else "_{}".format(i).join(os.path.splitext(base))
dst_path = os.path.join(dst, name)
if not os.path.exists(dst_path):
shutil.copy(src, dst_path)
break
i += 1