python之shutil

Posted wanghuixi

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python之shutil相关的知识,希望对你有一定的参考价值。

 

‘‘‘
shutil
用来处理 文件 文件夹 压缩包 的模块
‘‘‘

import shutil

# 拷贝文件内容
shutil.copyfileobj(open(old.xml, r), open(new.xml, w))

# 拷贝文件
shutil.copyfile(f1.log, f2.log)

# 拷贝权限
shutil.copymode(f1.log, f2.log)

# 拷贝文件状态信息
shutil.copystat(f1.log, f2.log)

# 拷贝文件和权限
shutil.copy(f1.log, f2.log)

# 递归地拷贝文件夹
# shutil.copytree(folder1, folder2,
ignore=shutil.ignore_patterns(*.pyc, *.txt))

# 递归地删除文件
# shutil.rmtree(folder2)

# 递归地移动重命名文件
# shutil.move(folder2, folder3)

# 打包文件
ret = shutil.make_archive(rC:\GitHub\Python\day7\shutil\www, gztar,
root_dir=rC:\GitHub\Python\day7\shutil\folder1)

 

以上是关于python之shutil的主要内容,如果未能解决你的问题,请参考以下文章

python之shutil模块

python之shutil模块

Python3之shutil模块

python之shutil模块

Python3之shutil模块

python之shutil