首页 > 其他 > 详细

.tar.gz海量遥感影像解压

时间:2020-12-24 09:21:23      阅读:37      评论:0      收藏:0      [点我收藏+]
import tarfile
import os
def tar(fname):
    t = tarfile.open(fname + ".tar.gz", "w:gz")
    for root, dir, files in os.walk(fname):
        print root, dir, files
        for file in files:
            fullpath = os.path.join(root, file)
            t.add(fullpath)
    t.close()

if __name__ == "__main__":
    tar("del")

 

.tar.gz海量遥感影像解压

原文:https://www.cnblogs.com/ydbgis/p/14182470.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!