python对文件的压缩解压
python自带的zipfile的模块支持对文件的压缩和解压操作
zipfilp.zipfile 表示创建一个zip对象
zipfile.zipfile(file[, mode[, compression[, allowzip64]]])
#file表示文件的路径
#mode表示文件的打开模式
r表示读,默认
w表示写入,没有则新建,有则覆盖
a表示追加写入
#compression表示存储的方式
zipfile.zip_stored 表示只是存储模式,不对文件进行压缩操作,默认
zipfile.zip_deflated 表示对文件进行压缩操作
#allowzip64 如果进行操作的文件大于2g,应该设置为true,默认为false
列:
zip = zipfile.zipfile(zip_name, 'w', zipfile.zip_deflated )
for file in path:
zip.write(file)
zip.close()
#path是一个列表,可以放入多个文件路径,能将多个文件压缩至一个压缩包
zipfile.extract(member,[path,[,pwd]]) 将zip内的指定文件解压
#member 表示要解压的文件名称
#path 指定解压文件存放的文件夹
#pwd 表示解压密码
zipfile.extractall(member,[path,[,pwd]]) 将zip内的全部文件解压
#member 可以指定要解压的文件名,默认是zip内的所有文件
zipfile.write(filename[,arcname[,compress_type]]) 将指定文件压缩到压缩包里
#filename 表示文件路径
#arcname 表示文件添加压缩到压缩包内的名称
#compress_type 表示压缩方法
zipfile.setpassword(pwd) 表示设置zip的密码
上一篇: 技师:你要的色号我都有
下一篇: zookeeper【1】配置管理