LoginSignup
2
2

More than 3 years have passed since last update.

zipfileの圧縮・展開

Posted at
1
import zipfile
import glob

with zipfile.ZipFile('test.zip', 'w') as z:
    for f in glob.glob('test_dir/**', recursive=True):
        z.write(f)
#test_dir以下をtest.zipというファイル名でzipfileに圧縮

with zipfile.ZipFile('test.zip', 'r') as z:
    z.extractall(path='zzz2')
#zzz2というディレクトリにtest.zipを展開
2
import zipfile

with zipfile.ZipFile('test.zip', 'r') as z:
    with z.open('test_dir/sub_dir/sub_test.txt') as f:
        print(f.read())
#zipfileに圧縮されたtest.zipを展開することなく、sub_test.txtを出力
2
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
2