Top "Zipfile" questions

For issues relating to creating and/or utilizing zip files.

How do you read a file inside a zip file as text, not bytes?

A simple program for reading a CSV file inside a zip file works in Python 2.7, but not in Python 3.2 $ cat …

csv python-3.x zipfile
How to compress csv file into zip archive directly?

I am generating a number of csv files dynamically, using the following code: import csv fieldnames = ['foo1', 'foo2', …

python csv gzip zipfile
Send generated zip file with ExpressJS

I'm using the express module in a NodeJS server to generate a zip file. The express server is responding to …

node.js express attachment zipfile
How to extract zip file recursively in Python

I have a zip file which contains three zip files in it like this: zipfile.zip\ dirA.zip\ a dirB.…

python python-3.x zip unzip zipfile
Using Python to add a list of files into a zip file

I want to write a script to add all the ‘.py’ files into a zip file. Here is what I …

python zipfile
How to connect to a protected Sqlite3 database with Python

I created a SQLite3 database and protected it with a password ("test") thanks to the application DB browser for SQLite. …

python sqlite zipfile db-browser-sqlite
Creating a zip file on the fly from files stored on S3 using php

I have a Laravel web app in which users can upload files. These files can be sensitive and although they …

php amazon-s3 zipfile
zipfile cant handle some type of zip data?

I came up over this problem while trying to decompress a zip file. -- zipfile.is_zipfile(my_file) always …

python zipfile
Opening downloaded zip file creates cpgz file?

If I make the url for a zip file the href of a link and click the link, my zip …

php http-headers zip zipfile
System.IO.Compression.ZipFile UnauthorizedAccessException

I'm trying to backup some files using the .NET 4.5 ZipFile class and the CreateFromDirectory(string, string) method. I'm getting an …

.net zipfile