The @zip
module contains functions and classes for manipulating
Zip files
and compressing data.
Shrink (compress) aribtrary byte data.
Expand (uncompress) previously compressed data.
@writer
MethodsCreate object for writing zip files.
Add file to zip.
Add data as file to zip.
Add entire folder to zip.
If the folder path is "some/folder", the path within the zip will just be "folder".
@reader
MethodsCreate object for reading zip files.
Get the list of items within this zip.
Each item is like:
{ name : string, is_folder : boolean, modified : number (timestamp; seconds since Unix epoch), size : number (bytes) }
This is the same output format as os.dir().
#print all files within zip z = zip.reader('test.zip') for item,z.items() print item.name
Get uncompressed data of file within zip.
Extract file to current directory.
Subdirectories will be created in current directory as necessary.
Extract all files to current directory.
Subdirectories will be created in current directory as necessary.