如何仅提取.tar.gz成员的文件?

时间:2016-06-10 15:51:01

标签: python python-3.x tar

我的目标是解压缩.tar.gz文件,而不是导致文件的子目录。

我的代码基于此question,除了解压缩.zip我正在解压缩.tar.gz文件。

我问的是这个问题,因为我得到的错误很模糊,并且无法识别我的代码中的问题:

import os
import shutil
import tarfile

with tarfile.open('RTLog_20150425T152948.gz', 'r:gz') as tar:
    for member in tar.getmembers():
        filename = os.path.basename(member.name)
        if not filename:
            continue

        # copy file (taken from zipfile's extract)
        source = member
        target = open(os.path.join(os.getcwd(), filename), "wb")
        with source, target:
            shutil.copyfileobj(source, target)

正如您所看到的,我复制了链接问题中的代码并尝试将其更改为处理.tar.gz成员而不是.zip成员。运行代码后,我收到以下错误:

Traceback (most recent call last):
  File "C:\Users\dzhao\Desktop\123456\444444\blah.py", line 27, in <module>
    with source, target:
AttributeError: __exit__

从我已经完成的阅读开始,shutil.copyfileobj将两个&#34;文件类型&#34;作为输入。对象。 memberTarInfo个对象。我不确定TarInfo对象是否是类似文件的对象,所以我尝试更改此行:

source = member #to
source = open(os.path.join(os.getcwd(), member.name), 'rb')

但这可以理解地引发了一个错误,即找不到文件。

我不理解什么?

1 个答案:

答案 0 :(得分:5)

此代码对我有用:

import os
import shutil
import tarfile

with tarfile.open(fname, "r|*") as tar:
    counter = 0

    for member in tar:
        if member.isfile():
            filename = os.path.basename(member.name)
            if filename != "myfile": # do your check
                continue

            with open("output.file", "wb") as output: 
                shutil.copyfileobj(tar.fileobj, output, member.size)

            break # got our file

        counter += 1
        if counter % 1000 == 0:
            tar.members = [] # free ram... yes we have to do this manually

但你的问题可能不是提取,而是你的文件确实没有.tar.gz但只是一个.gz文件。

编辑:你也在for line上得到错误,因为python试图调用成员对象的__enter__函数(不存在)。