1 函数使用方法
import shutil
shutil.copyfile(src, dst)
将名为src的文件的内容(无元数据)复制到名为 dst 的文件中 , dst 必须是完整的目标文件名
dst(destination)必须含有你复制过去的文件路径,创建路径时需要检查文件夹是否存在
dst中必须包含你想要创建的文件名
它其实是将源数据复制到在目标文件夹的文件中!,所有如果没有文件路径时,需要你先通过os.makedirs("path")创建路径,然后在此路径下给出你想要的文件名
注:
os.makedirs() 的作用是用来创建路径的
2 示例
import shutil
argetdir_path = 'C:\user\data\\' + upfile
Targetfile_path = 'C:\user\data\\' + upfile + '\\' + data_name
if not os.path.exists(Targetdir_path):
os.mkdir(Targetdir_path)
shutil.copyfile(file, Targetfile_path)