码迷,mamicode.com
首页 > 编程语言 > 详细

【python】解压文件

时间:2016-09-10 22:05:46      阅读:112      评论:0      收藏:0      [点我收藏+]

标签:

 

参考:http://essen.iteye.com/blog/1941489

 

tarfile模块

具体使用方法: https://docs.python.org/2/library/tarfile.html

 

例子:一次性解压所有文件

 import tarfile
 t = tarfile.open("abc.tgz", "r:gz")
 t.extractall(path = dir/)
 t.close()

 

还可以一次解压一个文件

tar = tarfile.open(filename, r:gz)
for tar_info in tar:
    file = tar.extractfile(tar_info)
    do_something_with(file)

 

【python】解压文件

标签:

原文地址:http://www.cnblogs.com/dplearning/p/5860294.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!