day6-python-压缩解压

Posted ppppppy

tags:

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

压缩解压包

#导入模块
import zipfile
#新建压缩包并将db与ooo.xml压缩到文件中
z = zipfile.ZipFile(laxi.zip,w)
z.write(db)
z.write(ooo.xml)
z.close()

#解压以读的方式打开laxi.zip文件
z = zipfile.ZipFile(laxi.zip,r)
#并将文件解压到指定路径
z.extractall(path = rC:\Users\liguangxu\Desktop)
#将指定文件解压到指定路径
z.extract(db,path = rC:\Users\liguangxu\Desktop)
z.close()
 1 #tarfile模块
 2 import tarfile
 3 #将your.tar文件以写的方式打开,并压缩添加bbs.log文件
 4 tar = tarfile.open(your.tar,w)
 5 tar.add(/Users/liguangxu/Desktop/a.txt,arcname= bbs.log)
 6 tar.close()
 7 
 8 
 9 #解压
10 tar = tarfile.open(your.tar,r)
11 tar.extractall()#可设置解压地址
12 tar.close()

 

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

1078. 字符串压缩与解压 (20)

PAT Basic 1078

Python之路,day6-Python基础

day6-Python学习笔记(十四)接口开发

DAY6-Python学习笔记

day6-Python学习笔记(十三)redis数据库