Top "Zip" questions

ZIP is a format for compressed file archives, allowing packaging of multiple files and directories into a single file.

How to read a single file inside a zip archive

I need to read the content of a single file, "test.txt", inside of a zip file. The whole zip …

php zip gzip zlib
Python, write in memory zip to file

How do I write an in memory zipfile to a file? # Create in memory zip and add files zf = zipfile.…

python zip stringio
How to extract file from zip without maintaining directory structure in Python?

I'm trying to extract a specific file from a zip archive using python. In this case, extract an apk's icon …

python zip unzip directory-structure
How to download, zip and save multiple files with Javascript and get progress?

I'm creating a Chrome extension that needs to download multiple files (images and/or videos) from a website. These files …

javascript google-chrome-extension zip download save-as
Delete file from zipfile with the ZipFile Module

The only way I came up for deleting a file from a zipfile was to create a temporary zipfile without …

python zip delete-file
How do I set permissions (attributes) on a file in a ZIP file using Python's zipfile module?

When I extract files from a ZIP file created with the Python zipfile module, all the files are not writable, …

python attributes zip file-permissions zipfile
Adding files to ZIP file

I am trying to add some files to a ZIP file, it creates the file but does not add anything …

java zip directory fileinputstream zipoutputstream
How to create a zip file of multiple image files

I am trying to create a zip file of multiple image files. I have succeeded in creating the zip file …

java file zip fileinputstream zipoutputstream
ZIP a file and protect with a password in PHP

I'm having this code to zip files but i need to protect this file with a password $file = 'backup.sql'; $…

php zip password-protection
DotNetZip: How to extract files, but ignoring the path in the zipfile?

Trying to extract files to a given folder ignoring the path in the zipfile but there doesn't seem to be …

c# zip dotnetzip