Python中使用tarfile压缩、解压tar归档文件示例
Python自带的tarfile模块可以方便读取tar归档文件,牛b的是可以处理使用gzip和bz2压缩归档文件tar.gz和tar.bz2。
与tarfile对应的是zipfile模块,zipfile是处理zip压缩的。请注意:os.system(cmd)可以使Python脚本执行命令,当然包括:tar-czf *.tar.gz*,tar-xzf*.tar.gz,unzip等,当我觉得这样尽管可以解决问题,但我觉得很业余。
使用tarfile压缩
importtarfile
#创建压缩包名
tar=tarfile.open("/tmp/tartest.tar.gz","w:gz")
#创建压缩包
forroot,dir,filesinos.walk("/tmp/tartest"):
forfileinfiles:
fullpath=os.path.join(root,file)
tar.add(fullpath)
tar.close()
使用tarfile解压
defextract(tar_path,target_path):
try:
tar=tarfile.open(tar_path,"r:gz")
file_names=tar.getnames()
forfile_nameinfile_names:
tar.extract(file_name,target_path)
tar.close()
exceptException,e:
raiseException,e
其中open的原型是:
tarfile.open(name=None,mode='r',fileobj=None,bufsize=10240,**kwargs)
mode的值有:
'r'or'r:*' Openforreadingwithtransparentcompression(recommended). 'r:' Openforreadingexclusivelywithoutcompression. 'r:gz' Openforreadingwithgzipcompression. 'r:bz2' Openforreadingwithbzip2compression. 'a'or'a:' Openforappendingwithnocompression.Thefileiscreatedifitdoesnotexist. 'w'or'w:' Openforuncompressedwriting. 'w:gz' Openforgzipcompressedwriting. 'w:bz2' Openforbzip2compressedwriting.
更多请参考:tarfile—Readandwritetararchivefiles
热门推荐
10 喜得孙子祝福语简短唯美
11 婚礼祝福语简短朴实大众
12 员工周年祝福语大全简短
13 家长回复节日祝福语简短
14 简短生日祝福语老同学
15 夜雨祝福语简短10字
16 蛋糕祝福语简短闺蜜
17 部门过年祝福语简短独特
18 简短精炼的结婚祝福语