Python复制文件
import os
import sys
def copy_file(srcfile, dstpath):
if not os.path.isfile(srcfile):
print("{} 文件不存在".format(srcfile), flush=True)
sys.exit(1)
else:
fpath, fname = os.path.split(srcfile) # 分离文件名和路径
if not os.path.exists(dstpath):
os.makedirs(dstpath) # 创建路径
if os.path.exists(dstpath + fname):
os.remove(dstpath + fname)
shutil.copy(srcfile, dstpath + fname) # 复制文件
print("复制文件:{0} ——> {1}".format(srcfile, dstpath + fname), flush=True)