ZipFile无法使用目录提取zip

时间:2012-10-15 13:18:27

标签: python zip

我正在尝试用Python解压缩文件。我正在使用以下功能:

def unzip(source_filename, dest_dir):
    zf = zipfile.ZipFile(source_filename)
    for member in zf.infolist():
        # Path traversal defense copied from
        # http://hg.python.org/cpython/file/tip/Lib/http/server.py#l789
        words = filter(None, member.filename.split('/'))
        path = dest_dir
        for word in words[:-1]:
            drive, word = os.path.splitdrive(word)
            head, word = os.path.split(word)
            if word in (os.curdir, os.pardir): continue
            path = os.path.join(path, word)
        zf.extract(member, path)

当使用名为“gui”的目录解压缩.zip时,出现以下错误:

Traceback (most recent call last):
  File "MCManager.py", line 137, in add
    unzip(addedFilepath, dirUnzipped)
  File "MCManager.py", line 19, in unzip
    zf.extract(member, path)
  File "/System/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/zipfile.py", line 928, in extract
  File "/System/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/zipfile.py", line 962, in _extract_member
  File "/System/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/os.py", line 157, in makedirs
OSError: [Errno 20] Not a directory: '/Users/student/Library/Application Support/minecraft/temp/unzipped/gui/gui'

这是ZipFile()的问题吗?

1 个答案:

答案 0 :(得分:0)

检查方法extract的{​​{3}},您会发现您的方法通过变量path收到的dest_dir变量必须是a的路径dir你希望迭代的zip文件的内容被提取到。

正如您在问题上所述,gui是一个文件,而不是目录。说实话,你要陈述

  

使用名为“gui(...)”的文件解压缩.zip时

没有多大意义。

此外,您可能需要查看documentation方法,以便可以按需创建目录。