shutil的一些基本用法

Posted chen55555

tags:

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

import shutil
import time
import tarfile
# 将文件内容拷贝到另一个文件中
shutil.copyfileobj(open(a1, r), open(random2, w))
# 复制文件
shutil.copyfile(a1, a2)

# 复制nb文件夹下的所有文件到nbb
shutil.copytree(nb, nbb, ignore=shutil.ignore_patterns(*.pyc, tmp*))


# 打包文件
shutil.make_archive(nb1%s % time.strftime(%Y-%m-%d), gztar, root_dir=nb)

# 解压
t = tarfile.open(nb12019-01-10.tar.gz, r)
t.extractall(ttt)
t.close()

 

以上是关于shutil的一些基本用法的主要内容,如果未能解决你的问题,请参考以下文章

shutil模块

python-os.rmdir与shutil.rmtree的区别和用法

python中shutil和shutil库的用法

Python shutil模块用法实例分析

python调试:pdb基本用法(转)

python中shutil的用法