import tarfile
#压缩
tar = tarfile.open('your.tar','w')
tar.add('ooo.xml',arcname='ooo.xml')
tar.close()
#解压全部文件
tar = tarfile.open('your.tar','r')
tar.extractall()
tar.close()
#解压指定文件
for item in tar.getmembers():
print(item,type(item))
obj = tar.getmember('ooo.xml')
tar.extract(obj)
tar.close()
相关文章
- 02-05压缩和解压文件:tar gzip bzip2 compress(转)
- 02-05Bug :”解压压缩文件失败: cpio; 在头中不存在归档“
- 02-05文件查找工具和打包压缩工具
- 02-05ZipArchive框架的文件压缩和解压
- 02-05如何解压缩zip文件的特定目录中的所有文件?
- 02-05SharpZipLib压缩中文文件,解压后文件名乱码
- 02-05Ionic.Zip.dll文件压缩和解压
- 02-05liunx 不通文件系统的压缩与解压缩
- 02-05【PC工具】文件压缩解压工具winrar解压缩装机必备软件,winRAR5.70免费无广告
- 02-05sphinx索引分析——文件格式和字典是double array trie 检索树,索引存储 – 多路归并排序,文档id压缩 – Variable Byte Coding