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

learn more… | top users | synonyms

-1
votes
0answers
13 views

data starting at 0 is in unknown format

My code is as follows ZipFile zf = new ZipFile(sourcePath, "GBK"); When the program execution to it,the program crashes the log is as follows java.lang.RuntimeException: data starting at 0 is in ...
2
votes
2answers
53 views

How do I zip a file in python

How do I zip a file in python and how do specify the compression level ? I have the below code so far and the error I get is: Zip("log4j.dl-service.log.2013-05-03-22",9) AttributeError: 'str' ...
1
vote
0answers
60 views

Python crashes with ZIP file

I'm running a program that prompts a user to select a file from explorer and it will use that file path later in the program, but when I run it, it causes python to crash. from time import sleep ...
0
votes
0answers
66 views

How to create ZipArchive correctly?

i'm writing Desktop WPF application (.Net Framework 4.5) and one of tasks is to save multiple files to zip archive. I made 2 methods. First to create zip, second to read from it. public static ...
-2
votes
0answers
46 views

How to loop through a zip file (and its subdirectories) and find all files of a certain type?

How to loop through a zip file (and its subdirectories) and find all files of a certain type? I am using Python 3.2.1 Here's my code so far: import os from zipfile import * zip = ...
4
votes
1answer
81 views

Faster alternative to Python's zipfile module?

Is there a noticeably faster alternative to Python 2.7.4 zipfile module (with ZIP_DEFLATED) for zipping a large number of files into a single zip file? I had a look at czipfile ...
0
votes
1answer
47 views

zip files with same names but different exensions using Ioniz.Zip DLL

I need help in writing a function which zips all files with same name but different extensions in a folder.I am using Ionic.Zip dll to achieve this.I am using .Net compact framework 2.0,VS2005. My ...
0
votes
2answers
85 views

Python: Unzip a file to current working directory but not maintain directory structure in zip

I have a zip file like this: myArchive.zip | -folder1 | --folder2 | ---myimage.jpg When I try to extract myimage.jpg: with zipfile.ZipFile('myArchive.zip', 'r') as zfile: ...
0
votes
2answers
36 views

python/zip: How to eliminate absolute path in zip archive if absolute paths for files are provided?

I have two files in two different directories, one is '/home/test/first/first.pdf', the other is '/home/text/second/second.pdf'. I use following code to compress them: import zipfile, StringIO buffer ...
1
vote
2answers
178 views

How to Unzip all .Zip file from Folder using C# 4.0 and without using any OpenSource Dll?

I have a folder containing .ZIP files. Now, I want to Extract the ZIP Files to specific folders using C#, but without using any external assembly or the .Net Framework 4.5. I have searched, but not ...
0
votes
0answers
14 views

Is there a way to add a folder to existing 7za archive?

I have tried adding a new folder to an existing 7za archive using the following command from command prompt: 7za.exe a repo.zip \res\pub\newfolder newfolder The above command added a folder to root ...
0
votes
0answers
44 views

Zipping multiple files from database to send to client for download is not getting to browser for download

My servlet is called from an ajax function in a jsp page, and I am successfully returning to the ajax call, but the download is not happening in the browser. I am not getting any errors in my ...
0
votes
1answer
10 views

Should all file structures in a ZIP file be consecutive?

While reading a ZIP file, can we safely assume that all file structures (by that I mean Local File Header + file data (compressed or stored) + Data Descriptor) are exactly consecutive? Can there be ...
0
votes
2answers
98 views

.zip file downloading as .php

I have a .zip file which is generated on the server using php. The file generated is valid and I checked it by downloading it via ftp etc. I need to create a way for a user to download this file ...
0
votes
0answers
66 views

Python sends corrupt .docx as email attachment (google app engine)

I want to send an email from python with: thedoc = generate_doc() mail.send_mail(sender="Support", to="user@mail.co.uk', subject="RE: ref", ...
0
votes
1answer
42 views

Use shutil.make_archive with zipfile.ZIP_STORED?

In Python is there a way to use the shutil.make_archive() function with file compression set to zipfile.ZIP_STORED ? (that is, uncompressed) The document shows that there are many optional ...
0
votes
1answer
29 views

Read a directory content instead of a zip file content

I have this code which enables me to read a zip file content, but I want instead to read a directory content instead of a zip file (the zip file must be seen as a directory). What should I do ? ...
0
votes
1answer
34 views

Manual zip-creation issue using ZipStorer

This code works fine ZipStorer storer = ZipStorer.Create(@"H:\temp\sysInfo.zip", ""); if (systemInfoStream != null) storer.AddStream(ZipStorer.Compression.Deflate, "SystemInfo.txt", ...
0
votes
2answers
31 views

Extracting a sub file from a zip file

I have a number of image files in a zip file (more than 50,000). How can I get a file through its name in a zip file without extracting the whole zip?
2
votes
1answer
112 views

Python unzip AES-128 encrypted file

Is there a way to decompress an AES-128 encrypte file directly with python, since ZipFile throws a Bad Password error. If i use 7zip it works, so the password is correct, but then again 7zip needs to ...
3
votes
2answers
158 views

ZipInputStream.getNextEntry returns null on some zip files

I have a simple code to extract zip files, it was working just fine as expected but during my test I tried my code with some zip files (fonts, icons and templates I downloaded from internet) just to ...
0
votes
1answer
39 views

Adverse effects of zip bombs?

I have read about zip bombs on Wikipedia, read this question. I tried experimenting to make a zip bomb, but when I unzip the final file, since the unzip is not recursive, it does not do anything to ...
0
votes
2answers
86 views

ZipResourceFile cannot be resolved to a type

I am trying to rewrite my App to work with APK Expansion files. I have been following the documentation here http://developer.android.com/google/play/expansion-files.html . I have downloaded the ...
0
votes
3answers
108 views

How to post (HTTP POST) zipfile and parameters in ObjectiveC?

I have tried to Post a Zipfile and some parameters to web service, but i get the response "missing ebook file", so how to Post zip file and parameters in Objectivec please help me Thanks in Advance ...
0
votes
1answer
46 views

Launch ipad application from attachment in email

I am sending a zip file containing images and text file as an email attachment in ipad. Now my required functionality is that I want to launch my app when user taps on attachment for downloading and ...
0
votes
0answers
65 views

Python Django: Add a new file in existing ZIP file and Download it

I have a Zip file on server which users will download. When users will click download, a file should be generated dynamically and added to that zip, then that zip should be downloaded. I know how to ...
0
votes
1answer
40 views

Reducing memory usage while building a Zip file

My application has a feature in which it exports data from the database. It builds a zip file containing the data using the Ionic ZIP library. The process works by retrieving data in pages of 1,000 ...
0
votes
0answers
20 views

Getting the folder structure of a jar in a map using java

I have a jar in my C:\ .The jar file contains many class files.The fully qualified class names are like com.util.java.classA , com.util.java.ClassB , com.util.main.ClassC . What i have to do is to ...
1
vote
1answer
219 views

Creating a zip file with ionic.zip

I have the following code set up to create a zip file of a set of doucments: public bool CreateDocumentationZipFile(int documentIdentifier, string zipDestinationPath, IList<string> ...
3
votes
1answer
63 views

How to check if entry is file or folder using Python's standard library zipfile?

I have a zip file and I need to check if a file is a folder or a file without extracting them. I could check it using file_size property of infolist if it is 0 but this is the same for a file with 0 ...
0
votes
0answers
41 views

Create ZIP from byte array [duplicate]

I am getting a byte array representing a ZIP file from the JSON response sent by a server, and on the Android side I want to recreate the ZIP from the array. I am using this code to achieve this but ...
0
votes
0answers
29 views

php ZipArchive: Detect process has completed

I have these files that are zipped using ZipArchive and then they are automatically downloaded to the users computer. My problem is that on the test server all is OK, but on the production server my ...
1
vote
0answers
194 views

Export all csv file into memory and zip at one time

I have a function for export one csv file include all answers of each survey. I need one function for export all answers of all surveys (one survey per one csv file) into menory and zip it before ...
0
votes
1answer
170 views

I need to extract .tar.Z file using java

Do anyone have coding in java to extract .tar.Z files. Assume that i am having file called home.tar.Z I need extract this file using java code, can you give any sample code. Thanks
0
votes
1answer
115 views

Python error extracting some zip files

i wrote a small app that downloads a zip file (with a different extension) when provided by a link and extracts the file to a renamed folder. For some reason its working for some of my zip files, but ...
0
votes
0answers
148 views

ASP.NET 4.5 ZipFile class how to download and open zip from FTP

My overall goal is to grab a zip file from my ftp, open it on the fly, read the content for a specific field in the excel file (there will only ever be one file in any zip). So far I have been ...
0
votes
1answer
21 views

How to compress entire directory keeping it's structure after uncompress?

I understand how to get all files from specified entire directory, but I don't understand how to compress entire directory keeping it's inner structure (I mean inner folders). I use ZipStorer but ...
3
votes
2answers
107 views

How to debug NullPointerException occurred in library code?

I am extracting a ZIP file in java: ZipFile zipFile = new ZipFile(theZipFile); Enumeration<? extends ZipEntry> zipEntries = zipFile.entries(); while(zipEntries.hasMoreElements()){ ...
1
vote
2answers
70 views

python's zipfile module cannot update entries

I would like to update an entry in a zip file using pythons zipfile module. My problem is that this generates a new entry. please assume i have this code: from zipfile import ZipFile,ZIP_DEFLATED ...
0
votes
2answers
17 views

How to dynamically present an on the fly zipfile to users

I'm editing an ancient script that zips several images and presents them dynamically to the user. I have rewritten almost all of the code, but I can't find a way to way to output the contents of the ...
0
votes
3answers
323 views

How to read content of the Zipped file without extracting in java

I have file with names like ex.zip. In this example, the Zip file contains only one file with the same name(ie. `ex.txt'), which is quite large. I don't want to extract the zip file every time.Hence I ...
0
votes
2answers
85 views

Why are some files are not being added do my zipfile

I have the following code: with ZipFile('deploy.zip', 'w') as deploy: if os.path.isfile(artifact.source): deploy.write(artifact.source, artifact.target) else: for base, dirs, ...
0
votes
1answer
48 views

Can I accelerate the zipping speed?

Well I was looking to my current zipping code and then I came up with the question, is there any way that I can make it zip faster? I used this code: Zip Code I changed the Buffer to a bigger number, ...
0
votes
0answers
70 views

Zip::ZipFile File not found error with aws s3 in rails

Iam working on a rails application hosted on heroku and trying to unzip files. Iam storing zipfile using paperclip on amazon s3. zip_file.rb class ZipFile < ActiveRecord::Base ...
0
votes
4answers
261 views

unzipping a file with Python and returning all the directories it creates

How can I unzip a .zip file with Python into some directory output_dir and fetch a list of all the directories made by the unzipping as a result? For example, if I have: unzip('myzip.zip', 'outdir') ...
0
votes
1answer
92 views

Read/Write file from a .zip archive

Should I work with files within the archive file. (Read - write). By the following code, I get a list of files on my needs. Zip := TZipFile.Create; try Zip.Open(FilePath, TZipMode.zmRead); ...
2
votes
1answer
96 views

How to let Python 2.4.3 have the ability of extracting ZIP file that is introduced in Python 2.6?

ZipFile.extract(member[, path[, pwd]]) is a new functionality introduced in Python 2.6. For some reason I need to implement the ZipFile.extract in Python 2.4.3(2.4.3 cannot handle ZipFile but just ...
0
votes
2answers
223 views

getInputStream for a ZipEntry from ZipInputStream (with out using ZipFile)

Any one has idea about how to get an InputStream for a ZipEntry from a ZipInputStream (with out working with ZipFile class).
0
votes
1answer
37 views

Modify ZipFile class to work with encoded file as a zip file

The idea is to encrypt a jar file, actually to encode it inorder to make it impossible to open with zip utility software (eg: winzip, winrar or ...). For encoding the jar file, i have just increment ...
1
vote
1answer
98 views

How to create multiple zip archives while compiling setup

I have an Inno-Setup which internally just starts another setup. (I would like to rebuild it completely with InnoSetup but did not yet have time to do so.) To run this internal setup, I need to ...

1 2 3 4 5 6