zipfile
標準ライブラリのモジュールを使用します。
import zipfile,os.path
def unzip(source_filename, dest_dir):
with zipfile.ZipFile(source_filename) as zf:
for member in zf.infolist():
# Path traversal defense copied from
# http://hg.python.org/cpython/file/tip/Lib/http/server.py#l789
words = member.filename.split('/')
path = dest_dir
for word in words[:-1]:
while True:
drive, word = os.path.splitdrive(word)
head, word = os.path.split(word)
if not drive:
break
if word in (os.curdir, os.pardir, ''):
continue
path = os.path.join(path, word)
zf.extract(member, path)
を使用extractall
すると、はるかに短くなりますが、その方法はPython 2.7.4 より前のパス トラバーサルの脆弱性から保護されないことに注意してください。コードが最新バージョンの Python で実行されることを保証できる場合。