Tagged Questions
For issues relating to creating and/or utilizing zip files.
13
votes
10answers
15k views
Adding folders to a zip file using python
I want to create a zip file. Add a folder to the zip file and then add a bunch of files to that folder.
So I want to end up with a zip file with a single folder with files in.
I dont know if its ...
6
votes
4answers
2k views
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 writeable, read only etc.
The file is being created and extracted under Linux and Python 2.5.2.
As ...
5
votes
1answer
505 views
Python 2.6 does not like appending to existing archives in zip files
In some Python unit tests of a program I'm working on we use in-memory zipfiles for end to end tests. In SetUp() we create a simple zip file, but in some tests we want to overwrite some archives. For ...
4
votes
6answers
472 views
Problem with unzipping file
I have two zip files, both of them open well with Windows Explorer and 7-zip.
However when i open them with Python's zipfile module [ zipfile.ZipFile("filex.zip") ], one of them gets opened but the ...
3
votes
1answer
83 views
How can i list only the folders in zip archive in Python?
How can i list only the folders from a zip archive?
This will list every folfder and file from the archive:
import zipfile
file = zipfile.ZipFile("samples/sample.zip", "r")
for name in ...
3
votes
1answer
567 views
OutOfMemory Error while trying to extract a large jar using ZipFileSet
With jdk1.5, i get an OutofMemoryError while trying to extract a reasonably large jar.
However, this does not happen on jdk6. Is it because of different default heap-size/permgen settings on jdk1.5 ...
3
votes
1answer
149 views
What would cause a zip file to not be recognized on Google App Engine's when it reads properly in my local GAE sdk
My code executes successfully when I run it locally, but when I upload it to GAE and attempt to run it throws me a BadZipfile: File is not a zip file, or ends with a comment
raw_file = ...
3
votes
3answers
1k views
Zipping dynamic files in App Engine (Python)
Is there anyway I can zip dynamically generated content, such as a freshly rendered html template, into a zip file using zipfile?
There seem to be some examples around for zipping static content, but ...
2
votes
2answers
32 views
How to verify the content of ZipFile before saving to disk
I have an application that requires a user to upload a zipfile containing xml report file among other files.
What I want to do is, to verify it is a zip, then open and check if there is an xml file, ...
2
votes
4answers
70 views
Can you Unzip and view content on Google App engine - Python?
I am trying to upload large CSV files onto GAE using a zip using XML & HTTP POST
Steps:
CSV is zipped & base64 encoded and sent to GAE via XML/HTTP POST
GAE - using minidom to parse XML
GAE ...
2
votes
3answers
58 views
Extract files from zip without keep the top-level folder with python zipfile
I'm using the current code to extract the files from a zip file while keeping the directory structure:
zip_file = zipfile.ZipFile('archive.zip', 'r')
zip_file.extractall('/dir/to/extract/files/')
...
2
votes
4answers
72 views
How to Zip files using JavaScript
Is there a way to zip files using JavaScript?? For an example, like in Yahoo mail, when you chose to download all the attachments from an email, it gets zipped and downloaded in a single zip file. Is ...
2
votes
1answer
42 views
Python ZipFile path separators
If I am unzipping a Zip file with the Python ZipFile library, where the file was created on Windows, but my code is running on Unix-like, will the path separators always be Unix-style?
2
votes
2answers
78 views
how to zip the file using ionic library
I have done this one for backup my database
its working fine ....
private void backupDatabase()
{
txtbackup.AppendText("Starting Backup...");
Process sd = null;
...
2
votes
1answer
76 views
Zipfile python module bytesize difference
I'm using zipfile module for python to extract a zipfile I retrieved from the internet using
urllib.urlretrieve()
the files in the zip file are patch files created by bsdiff, however when I let ...
2
votes
1answer
150 views
Download and unzip file with Python
I am trying to download and open a zipped file and seem to be having trouble using a file type handle with zipfile. I'm getting the error "AttributeError: addinfourl instance has no attribute 'seek'" ...
2
votes
3answers
306 views
py3k: 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 test_zip_file_py3k.py
import csv, sys, zipfile
zip_file = zipfile.ZipFile(sys.argv[1])
...
2
votes
2answers
417 views
How to open password protected zip file using truezip library in java
Please show me sample of code how to open password protected file using truezip library.
If you don't have a link to sample code please show me method to open this file.
2
votes
1answer
210 views
Python zipfile module: difference between zipfile.ZIP_DEFLATED and zipfile.ZIP_STORED
I have difficult to understand the difference between zipfile.ZIP_DEFLATED and zipfile.ZIP_STORED compression modes of the zipfile module.
Someone could help me?
thanks,
Max
2
votes
2answers
234 views
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 returns False, even though the UNIX command unzip handles it just fine. Also, when trying to ...
2
votes
2answers
1k views
Extract files from zip without keeping the structure using python ZipFile?
I try to extract all files from .zip containing subfolders in one folder. I want all the files from subfolders extract in only one folder without keeping the original structure. At the moment, I ...
2
votes
1answer
448 views
load a pickle file from a zipfile
For some reason I cannot get cPickle.load to work on the file-type object returned by ZipFile.open().
If I call read() on the file-type object returned by ZipFile.open() I can use cPickle.loads ...
2
votes
1answer
213 views
Python zipfile hangs when writing
I am trying to use the zipfile module in Python to create simple zip files:
import zipfile
files = ('a', 'b', 'c', 'd', 'e', 'f', 'g', 'h')
zip_file_name = 'zipfile_test.zip'
zfh = ...
2
votes
2answers
1k views
Extract files with invalid characters in filename with Python
I use python's zipfile module to extract a .zip archive (Let's take this file at http://img.dafont.com/dl/?f=akvaleir for example.)
f = zipfile.ZipFile('akvaleir.zip', 'r')
for fileinfo in ...
2
votes
3answers
611 views
extracting contents of ZipFile entries when read from byte[] (Java)
I have a zip file whose contents are presented as byte[] but the original file object is not accessible. I want to read the contents of each of the entries. I am able to create a ZipInputStream from a ...
2
votes
3answers
2k views
Set permissions on a compressed file in python
I have a file test.txt that is inside a zip archive test.zip. The permissions on test.txt are out of my control when it's compressed, but now I want them to be group-writeable. I am extracting the ...
1
vote
3answers
43 views
Calculate (approximately) if zip64 extensions are required without relying on exceptions?
I have the following requirements (from the client) for zipping a number of files.
If the zip file created is less than 2**31-1 ~2GB use compression to create it (use zipfile.ZIP_DEFLATED), ...
1
vote
2answers
98 views
Run file inside a zipfile?
Is it possible to run a .html or .exe for example, that is inside a zipfile? I'm using the Zipfile module.
Here's my sample code:
import zipfile
z = zipfile.ZipFile("c:\\test\\test.zip", "r")
x = ...
1
vote
0answers
28 views
Python zipfile writestr method. How to write large string ? (a large CSV file) [closed]
Possible Duplicate:
Create a zip file from a generator in Python?
from zipfile import ZipFile
with ZipFile('spam.zip', 'w') as myzip:
myzip.writestr('file.csv','records1,fields')
...
1
vote
1answer
125 views
How do I ZIP selected files for user to download?
Its my first post in stackoverflow, so please let me know if something is wrong so I can fix it, thanks.
I have the following code in my website...
<table id="fruits">
<tbody>
...
1
vote
1answer
37 views
What else exception we should catch for ZipFile.open
I am using Python 2.7.
Based on the document ZipFile.open, I am not able to find which exception should be caught when we call the ZipFile.open.
try:
with zipfile.ZipFile(zip_file_name, ...
1
vote
2answers
169 views
Bad magic number error with ZipFile module in Python
I am using Python 2.7 on Windows 7 (64 bit).
When I try to unzip a zip file with ZipFile module I get the following error:-
Traceback (most recent call last):
File "unzip.py", line 8, in ...
1
vote
1answer
141 views
Android 2.3 ZIP problems with general purpose flags
I made an application on Android and this application logs the activity into files. I have an option to export the files so I save the files in a .zip. If there is more than 1 file to add to the .zip, ...
1
vote
2answers
142 views
unzip file convert file to byte
I have application to download .zip file from url and convert each file from .zip file into byte array. At the moment I am able to download the file read the .zip file and convert the whole .zip file ...
1
vote
2answers
30 views
ToBase64String,C# 3.5
While converting a zip file to base64 encoded string,Which is needed to sent mail with MIME support I use
var encodedContent = ...
1
vote
1answer
74 views
WCF Service sends a .txt or .xls but not a .gz (Zipped file)
I have a WCF service up and running which saves a file to my server. I have tested this by sending a .txt file and a .xls file. The size of the .xls file is 90kb.
Now I have a zipped file .gz that ...
1
vote
1answer
75 views
Python: Getting files into an archive without the directory?
I've been learning python for about 3 weeks now, and I'm currently trying to write a little script for sorting files (about 10.000) by keywords and date appearing in the filename. Files before a given ...
1
vote
1answer
254 views
In Python, how to write back a stringIO text file to a zip archive, then back to bytea field in PostgreSQL?
A relative noob to Python, I've successfully pulled a text file, out of a zip archive, contained in a PostgreSQL bytea field, using this code:
myzip = ZipFile(StringIO(rv[0]["archivefield"]), 'a')
...
1
vote
1answer
202 views
Java file a progress bar
I'm new to Java.
I want to write a program that makes arcive of file
and i want to use progress bar to show progress of zipping
There is my code, but it duosen't work
shows only 100% when work is ...
1
vote
2answers
112 views
What is the fastest way to access files in a zip file?
What is the fastest way to read individual files (in a random fashion) from a zip file?
As I understand it, zip files have a directory that stores the individual file entries, and I could scan this ...
1
vote
4answers
228 views
Can't unzip archive built with zipfile (Python)
I'm having problems with an archive that I built using zipfile in Python. I'm iterating over all the files in a directory and writing them to an archive. When I attempt to extract them afterward I get ...
1
vote
1answer
136 views
python unzip files and provide update to wxPython status bar
I have several large zip file that contain a dir structure that I must maintain. Currently to unzip them I am using
zip = zipfile.ZipFile(self.fileName)
...
1
vote
1answer
122 views
does Python zipfile always use posixpath filenames regardless of operating system?
It probably won't matter for my current utility, but just for good coding practice, I'd like to know if files in a ZIP file, using the zipfile module, can be accessed using a POSIX-style pathname such ...
1
vote
1answer
288 views
Python - Problem with zipfile library
I'm new to python and decided to make a couple of scripts in order to get used to it. One of them does a dictionary attack on encrypted zip files, using the zipfile library. When I started using BIG ...
1
vote
2answers
477 views
create zip of complete directory using zipfile python module
zip = zipfile.ZipFile(destination+ff_name,"w")
zip.write(source)
zip.close()
Above is the code that I am using, and here "source" is the path of the directory. But when I run ...
1
vote
1answer
80 views
Can I set the permissions of the contents of a dynamically generated zip file in Google App Engine?
In my app engine script (using the Python API), I'm using this code to dynamically generate zip files and serve them back to the user. When I download and extract the generated zip file and I'm ...
1
vote
1answer
148 views
JAVA ZipFile entries() method doesn't see directories
I'm working on digital documents and digital signatures and I've stumbled upon a problem.
Input: documentX.adoc - zip file with files and folders inside.
I need to get all the content in the input ...
1
vote
1answer
166 views
python zipfile module doesn't seem to be compressing my files
I made a little helper function:
import zipfile
def main(archive_list=[],zfilename='default.zip'):
print zfilename
zout = zipfile.ZipFile(zfilename, "w")
for fname in archive_list:
...
1
vote
2answers
195 views
Setting path X in “ZipFile zipfile = new ZipFile(”X“);”
I'm having problems setting the path of the zip file, X, in ZipFile zipfile = new ZipFile("X");.
I don't want to hardcode the path such that it becomes ZipFile zipfile = new ...
1
vote
3answers
266 views
When creating a zip archive, what constitutes a duplicate entry
In a Java web application I am creating a zip file from various in-memory files (stored as byte[]).
Here's the key bit of code:
ByteArrayOutputStream baos = new ByteArrayOutputStream();
...