Logo

Programming-Idioms

History of Idiom 217 > diff from v3 to v4

Edit summary for version 4 by Oldboy:
New Python implementation by user [Oldboy]

Version 3

2019-12-17, 15:55:10

Version 4

2020-01-02, 10:53:32

Idiom #217 Create a Zip archive

Create a zip-file with filename name and add the files listed in list to that zip-file.

Idiom #217 Create a Zip archive

Create a zip-file with filename name and add the files listed in list to that zip-file.

Extra Keywords
zip
Extra Keywords
zip
Imports
import zipfile
Code
with zipfile.ZipFile(name, 'w', zipfile.ZIP_DEFLATED) as zip:
    for file in list_:
        zip.write(file)
Comments bubble
Files listed in list_