本文实例讲述了Python shutil模块用法。分享给大家供大家参考,具体如下:
shutil模块
主要作用与拷贝文件用的。
1.shutil.copyfileobj(文件1,文件2):将文件1的数据覆盖copy给文件2。
import shutil
f1 = open(1.txt,encoding=utf-8)
f2 = open(2.txt,w,encoding=utf-8)
shutil.copyfileobj(f1,f2)
2.shutil.copyfile(文件1,文件2):不用打开文件,直接用文件名进行覆盖copy。
import shutil
shuti