Tagged Questions
The unzip tag has no wiki summary.
20
votes
3answers
3k views
A Transpose/Unzip Function in Python
I have a list of 2-item tuples and I'd like to convert them to 2 lists where the first contains the first item in each tuple and the second list holds the second item.
For example:
original = [('a', ...
14
votes
7answers
8k views
Unzipping directory structure with python
I have a zip file which contains the following directory structure:
dir1\dir2\dir3a
dir1\dir2\dir3b
I'm trying to unzip it and maintain the directory structure however I get the error:
IOError: ...
12
votes
5answers
9k views
.NET Library to unzip ZIP and RAR files
What are good libraries to use Unzip RAR and Zip files in .NET? Do they even exist? Do they cost money or are there also free ones?
11
votes
2answers
2k views
How do you unzip very large files in python?
Using python 2.4 and the built-in ZipFile library, I cannot read very large zip files (greater than 1 or 2 GB) because it wants to store the entire contents of the uncompressed file in memory. Is ...
7
votes
1answer
83 views
Un-Zipping a file using GPG in android
In my project i am going to un-zip the file which is in the SD-Card.
But the files are zipped using a client certificate to ensure that they zip cannot be unzipped on a device that is not authorized ...
7
votes
3answers
10k views
Unzip files using JavaScript
I want to display OpenOffice files, .odt and .odp at client side using a web browser.
These files are zipped files. Using Ajax, I can get these files from server but these are zipped files. I have ...
7
votes
5answers
9k views
Unzip files programmatically in .net
I am trying to programatically unzip a zipped file.
I hace tried using the System.IO.Compression.GZipStream class in .NET, but when my app runs (actually an unit test) I get this expection:
...
6
votes
3answers
51 views
Unzip a file with php
I want to unzip a file and this works fine
<?php
system('unzip File.zip');
?>
But I need to pass in the file name through the URL and can not get it to work, this is what I have.
<?php ...
6
votes
5answers
3k views
unzip strings in javascript
anyone knows a simple JS library implementing the UNZIP algorithm?
No disk-file access, only zip and unzip a string of values.
there are ActiveX, using WinZIP and other client dependent software for ...
6
votes
5answers
6k views
Unzip Archive with Groovy
is there a built-in support in Groovy to handle Zip files (the groovy way)? Or do i have to use java.util.zip.ZipFile to process Zip files in Groovy ?
6
votes
4answers
2k views
java.util.zip.ZipException: too many entries in ZIP file
I am trying to write a Java class to extract a large zip file containing ~74000 XML files. I get the following exception when attempting to unzip it utilizing the java zip library:
...
5
votes
3answers
4k views
iPhone SDK - Adding zipped content in resources and then unzipping into Documents folder
I have some resources (zipped) that needs to be shipped with my iphone application. When the app launches for the first time, this zipped file needs to be moved/copied to the Documents folder and ...
5
votes
5answers
13k views
How to unzip files recursively in Java?
I have zip file which contains some other zip files.
For e.g. the mail file is abc.zip and it contains xyz.zip, class1.java, class2.java. And xyz.zip contains the file class3.java and class4.java.
So ...
4
votes
7answers
3k views
JavaScript: Decompress / inflate /unzip /ungzip strings
I'm looking for JavaScript implementation of string inflating algorithms.
I want to compress on the server side (Java), and decompress on the client side (JavaScript).
I've found:
unzip strings in ...
4
votes
2answers
189 views
lastwritetime is changing while extracting a zipfile in c#?
I am using Sharpziplib version 0.86 to extract a zip file. It is working fine but while extracting a winzip file through code,Lastwritetime is changing in seconds...
Have used this also ...
3
votes
2answers
65 views
Get N line from unzip -l
I have a jar file, i need to execute the files in it in Linux.
So I need to get the result of the unzip -l command line by line.
I have managed to extract the files names with this command :
unzip -l ...
3
votes
1answer
1k views
how to open java program generated zip file using UTF-8 encoding
our product uses has an export function, which zip some directory, the java program uses ZipOutputStream to write an zip file:
ZipOutputStream out = new ZipOutputStream(new ...
3
votes
2answers
98 views
How can I use a single command to unzip every file in a directory, into a new unique directory with the same name as the file
I have a directory full of zip files. Each called something like 'files1.zip'.
My instinct is to use a bash for loop to unzip each file.
Trouble is, many of the files will unzip their contents ...
3
votes
3answers
826 views
Python: downloading and unzipping a .zip file without writing to disk
I have managed to get my first python script to work which downloads a list of .ZIP files from a URL and then proceeds to extract the ZIP files and writes them to disk.
I am now at a loss to achieve ...
3
votes
3answers
144 views
Unzipping the file on device
Following command worked fine on Simulator. But this command does not work on Devices.
#define kUnZipCommand @"unzip \"%@\" -d\"%@\""
NSString *anUnZipCommand = [NSString ...
3
votes
2answers
558 views
Android Modify Zip FIle
Is there any way of modifying a zip on android without having to extract its contents? I only need to add/remove about 10 files. If I had to extract the zip it could go up to 200mb.
3
votes
3answers
280 views
SharpZipLib - ZipException “System.ArgumentOutOfRangeException” - Why am I getting this exception?
I'm using SharpZipLib to unzip files. My code has been working nicely for all zipfiles except the zip file what i am extracting now...
Got this exception:
System.ArgumentOutOfRangeException: ...
3
votes
3answers
916 views
Utility to unzip an entire archive to a directory in java
I'd like to do something like this in my program:
File zipFile = .....;
File destDir = ....;
ImaginaryZipUtility.unzipAllTo(zipFile, destdir);
I cannot possibly be the first to do this from a ...
3
votes
3answers
1k views
Uploading & Unzipping files to S3 through Rails hosted on Heroku?
I'd like to be able to upload a zip file to my Rails application that contains a number of images. Then I'd like Rails to unzip that file and attach the images inside to my Photo's model via ...
3
votes
3answers
1k views
Poor Performance of Java's unzip utilities
I have noticed that the unzip facility in Java is extremely slow compared to using a native tool such as WinZip.
Is there a third party library available for Java that is more efficient?
Open Source ...
3
votes
1answer
5k views
Unzip file from zip archive of multiple files on Android using ZipFile class
I'd like to use the ZipFile class to unzip a file using it's name from an archive of multiple files. How can I get the String of the zip file name and directory to pass to the ZipFile constructor?
3
votes
1answer
365 views
How to write multiple files from one NSData object?
I'm writing an iPhone app that includes in-app purchasing. It downloads a zip file, then I unzip the file using the popular NSData category (zlibDeflate) which outputs the uncompressed file into an ...
3
votes
4answers
763 views
Change present working directory of a calling shell from a ruby script
I'm writing a simple ruby sandbox command-line utility to copy and unzip directories from a remote filesystem to a local scratch directory in order to unzip them and let users edit the files. I'm ...
3
votes
4answers
2k views
Zip and Unzip the Folders and Files Using Java
If My Application wants to zip the Resultant files(group of Files) using java in a dynamic way, what are the available options in Java?
When i Browsed I have got java.util.zip package to use, but is ...
3
votes
2answers
1k views
Unpack/extract zip file with PHP without relying on any extension
Is there any way to unpack or extract a zip file with PHP that does not rely on any installed extension? Has anyone written a class or something that can handle it?
Alternatively, is there a solution ...
3
votes
2answers
572 views
Unzip files created with WinZIP with I18N file names?
People these days create their ZIP archives with WinZIP, which allows for internationalized (i.e. non-latin: cyrillic, greek, chinese, you name it) file names.
Sadly, trying to unpack such file ...
3
votes
1answer
558 views
Linux: Unzip an archive containing files with the same name
I was sent a zip file containing 40 files with the same name.
I wanted to extract each of these files to a seperate folder OR extract each file with a different name (file1, file2, etc).
Is there a ...
3
votes
3answers
4k views
Android :How to unzip a encrypted zip file
in winzip I am able to encrypt a file using some keys. In my android application I am using the encrypted zip file. I know the way for unzip a file (without encryption). but how can I unzip the ...
3
votes
2answers
2k views
Zipping and Unzipping tool for Flash
Are you aware of any zip/unzip component or script for flash / actionscript 2 ?
I'm aware of this library for flex / AS3, but is there one for AS2 that will save me a long conversion attempt?
Is ...
3
votes
2answers
6k views
unzip (zip, tar, tag.gz) files with ruby
I want do unzip a lot of zip files, is there a module or script that check which format the zip file is and decompress it?
this should work on linux, other OSs I don't care for this.
3
votes
4answers
2k views
How can I unzip the newest file in a directory in a BAT file?
I am working on a build system. The build system posts the results as a zip file in a directory. Unfortunately I have no easy way to know the name of the zip file, because it is timestamped. For ...
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
1answer
154 views
Unzip a tar.gz file from maven repository into build directory with gradle
i have a tar.gz file containing the WSDL file of a webservice and want to unzip this file into the build directory. The tar.gz file is in maven repository.
e.g. file name is ...
2
votes
2answers
107 views
create folder for zip file and extract to it
If I choose a zip file and right click "extract here" a folder with the zip filename is created and the entire content of the zip file is extracted into it.
However, I would like to convert several ...
2
votes
2answers
86 views
Removing path from a zip file using python
I have a zip file that has a path. When I unzip the file using python and put it in my target folder, it then creates all of the files in the path inside my target folder.
Target: d:\unzip_files
zip ...
2
votes
2answers
168 views
Ant unzip task and only extracting files based on another directory
I have a zip file and, separately, a directory that contains some files. From the zip file I'd like to extract only those files that exist in the directory (performing a filename transformation on ...
2
votes
1answer
109 views
Unzip local file in adobe air
Does anyone know a good library to unzip local files in adobe AIR for with actionscript 3?
I have:
A local file named somefile.zip
I need:
To give some external library a path where I want to ...
2
votes
1answer
341 views
unzip a tar.gz file in R?
I wish to download and open the following tar.gz file in R:
http://s.wordpress.org/resources/survey/wp2011-survey.tar.gz
Is there a command which can accomplish this?
Thanks.
2
votes
0answers
528 views
ipa files unzip to cpgz …OS X Lion specific problem [closed]
I used to have no problem unzipping ipa files but now since I upgraded to OS X Lion, they just unzip to a cpgz and I end up going in a circle.
Any ideas what's causing this problem or how to solve ...
2
votes
1answer
242 views
Unzip a password protected zip file with Apache ant?
Is there a way to unzip a password protected zip file directly with ant?
Currently I'm calling an external zip tool. But I would prefer an ant-only solution as it does not require any extra tools.
...
2
votes
1answer
1k views
Unzipping files in a faster way than using the java.util.zip in Android
I need unzip a .zip file of 2.5mb(1087 files - *.html, *.css and *.db) in android, i have used java.util.zip, it works fine, but i need improve the performance, the unzip process last 1.10 minutes, i ...
2
votes
1answer
276 views
Unzip files in the directory they are in with Ant
This should be simple but I can't find a way to do it. I need to extract any zip files in sub directories of a directory to the same sub directory using Ant. The files are passed to the ant task as a ...
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
5answers
481 views
unzip a zipfile in the same hierachy using java.util.ZipFile
given a zip file with multiple nested directory structure, how do I unzip it into the same tree structure?
does ZipFile.entries() provide the enumeration in any order?
2
votes
1answer
314 views
Is there a library to unzip .Z files using VB.NET?
I need to unzip a list of .Z files which will be kept in a folder using Visual Basic.NET.
For example, consider that there is a folder like C:\FilesToBeUnzipped. Inside this folder there will some 5 ...