Tagged Questions

Zip is a format for compressed file archives, allowing packaging of multiple files and directories into a single file. The specification for the standard is provided by PKWARE, a commercial company that sells compression software. There are multiple independent implementations of ZIP readers and writers, both libraries and finished programs, available on multiple platforms.

learn more… | top users | synonyms

31
votes
5answers
18k views

How do I ZIP a file in C#, using no 3rd-party APIs?

I'm pretty sure this is not a duplicate so bear with me for just a minute. How can I programatically (C#) ZIP a file (in Windows) without using any third party libraries? I need a native windows call ...
24
votes
9answers
7k views

recommend a library/API to unzip file in C#

Looks like no built-in Library/API in C# to unzip a zip file. I am looking for a free (better open source) library/API which could work with .Net 3.5 + VSTS 2008 + C# to unzip a zip file and extract ...
23
votes
12answers
22k views

Write a password protected Zip file in Java

I need to zip and password-protect a file. Is there a good (free) library for this? This needs to be opened by a third party, so the password protection needs to work with standard tools.
21
votes
7answers
19k views

Can Windows' built-in ZIP compression be scripted?

Is the ZIP compression that is built into Windows XP/Vista/2003/2008 able to be scripted at all? What executable would I have to call from a BAT/CMD file? or is it possible to do it with VBScript? I ...
20
votes
8answers
1k views

How can I protect myself from a zip bomb?

I just read about zip bombs, i.e. zip files that contain very large amount of highly compressible data (00000000000000000...). When opened they fill the server's disk. How can I detect a zip file is ...
20
votes
10answers
27k views

iPhone Unzip code

Really stuck on trying to write code to unzip a file or directory on the iPhone. Below is some sample code that Im using to try and unzip a simple text file. It unzips the file but its corrupt. ...
20
votes
2answers
6k views

GZipStream And DeflateStream will not decompress all bytes

I was in need of a way to compress images in .net so i looked into using the .net GZipStream class (or DeflateStream). However i found that decompression was not always successful, sometimes the ...
18
votes
6answers
2k views

What are the advantages of packaging your python library/application as an .egg file?

I've read some about .egg files and I've noticed them in my lib directory but what are the advantages/disadvantages of using then as a developer?
17
votes
7answers
3k views

Is there a built-in zip library in .NET 3.5?

Is there a built-in zip library in .NET 3.5? If not, what are the popular open source .net zip libraries.
17
votes
4answers
18k views

Extracting files from a Zip archive programmatically using C# and System.IO.Packaging

I have a bunch of ZIP files that are in desperate need of some hierarchical reorganization and extraction. What I can do, currently, is create the directory structure and move the zip files to the ...
16
votes
6answers
2k views

What is the best/easiest way to create ZIP archive in .NET?

Which method do you think is the "best". Use the System.IO.Packaging namespace? Use interop with the Shell? Third party library for .NET? Interop with open source unmanaged DLL? [I can target ...
16
votes
7answers
3k views

Open-source zip library for .NET?

Does anyone know of a good open-source zipping library for .NET?
15
votes
3answers
12k views

How to [recursively] Zip a directory in PHP?

Directory is something like: home/ file1.html file2.html Another_Dir/ file8.html Sub_Dir/ file19.html I am using the same PHP Zip class used in PHPMyAdmin ...
13
votes
8answers
6k views

How to create a zip archive with PowerShell?

Is it possible to create a zip archive using PowerShell? Thank you.
13
votes
7answers
13k views

Zip folder in C#

What is an example (simple code) of how to zip a folder in C#? Update: I do not see namespace ICSharpCode. I downloaded ICSharpCode.SharpZipLib.dll but I do not know where to copy that DLL file. ...
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 ...
12
votes
3answers
1k views

On-the-fly zipping & streaming of large files, in PHP or otherwise

Imagine a web serving scenario where several large files must be zipped and provided to the client for download. The most obvious way to do this on LAMP is to create a temporary zip file using PHP’s ...
12
votes
3answers
677 views

Why does x,y = zip(*zip(a,b)) work in Python?

OK I love Python's zip() function. Use it all the time, it's brilliant. Every now and again I want to do the opposite of zip(), think "I used to know how to do that", then google python unzip, then ...
12
votes
6answers
5k views

Create Zip file from stream and download it

I have a DataTable that i want to convert it to xml and then zip it, using DotNetZip. finally user can download it via Asp.Net webpage. My code in below dt.TableName = "Declaration"; ...
12
votes
1answer
7k views

Maven creating flat zip assembly

To Maven gurus out there: I'm trying to package non-java project artifacts (.NET) into a single zip file. I'm having 2 problems: If I change packaging in my POM to zip ...
12
votes
8answers
2k views

Is there an elegant zip to interleave two lists in Perl 5?

I recently "needed" a zip function in Perl 5 (while I was thinking about How do I calculate relative time?), i.e. a function that takes two lists and "zips" them together to one list, interleaving the ...
11
votes
4answers
897 views

Pairs from single list

Often enough, I've found the need to process a list by pairs. I was wondering which would be the pythonic and efficient way to do it, and found this on Google: pairs = zip(t[::2], t[1::2]) I ...
11
votes
8answers
3k views

Stop people uploading malicious PHP files via forms

I have an upload form created in php on my website where people are able to upload a zip file. The zip file is then extracted and all file locations are added to a database. The upload form is for ...
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 ...
10
votes
3answers
1k views

Version-controlling zipped files (docx, odt)

There are formats that are actually zip files in disguise, e.g. docx or odt. If I store them directly in version control, they are handled as binary files. My ideal solution would be have a hook ...
10
votes
7answers
744 views

Haskell map/zip Vs. list comprehension

Which of the following are you most likely to write? r = zip xs $ map sqrt xs or r = [(x, sqrt x) | x <- xs] Sample code on the Internet seems to indicate that the former is more abundant and ...
10
votes
3answers
3k views

How do I zip the contents of a folder using python (version 2.5)?

Once I have all the files I require in a particular folder, I would like my python script to zip the folder contents. Is this possible? And how could I go about doing it? A point in the right ...
10
votes
6answers
9k views

Automated script to zip IIS logs?

I'd like to write a script/batch that will bunch up my daily IIS logs and zip them up by month. ex080801.log which is in the format of ex*yymmdd*.log ex080801.log - ex080831.log gets zipped up and ...
9
votes
3answers
154 views

Is there a library for retrieving a file from a remote zip?

The goal is just to retrieve a specific file without downloading the entire contents, using the HTTP range method as described: http://www.codeproject.com/KB/cs/remotezip.aspx
9
votes
8answers
6k views

Appending files to a zip file with Java

I am currently extracting the contents of a war file and then adding some new files to the directory structure and then creating a new war file. This is all done programatically from Java - but I am ...
9
votes
3answers
9k views

How to download/checkout a project from Google Code in Windows?

How do I download a ZIP file of an entire project from Google Code when there are no prepared downloads available? This is what I see on the checkout page: Command-line access Use this command ...
9
votes
4answers
1k views

JPG+Zip File Combination Problem with Zip Format

Hopefully you've heard of the neat hack that lets you combine a JPG and a Zip file into a single file and it's a valid (or at least readable) file for both formats. Well, I realized that since JPG ...
9
votes
11answers
31k views

How to unzip a file using the command line?

Probably not possible to unzip files natively with dos...so what other ways can i unzip files through the command line? Preferably using open source/free tools Thanks
9
votes
7answers
4k views

How to create and fill a ZIP file using ASP.NET?

Need to dynamically package some files into a .zip to create a SCORM package, anyone know how this can be done using code? Is it possible to build the folder structure dynamically inside of the .zip ...
9
votes
3answers
2k views

Is it possible to generate and return a ZIP file with App Engine?

I have a small project that would be perfect for Google App Engine. Implementing it hinges on the ability to generate a ZIP file and return it. Due to the distributed nature of App Engine, from what ...
8
votes
3answers
430 views

Serving dynamic zip files through Apache

One of the responsibilities of my Rails application is to create and serve signed xmls. Any signed xml, once created, never changes. So I store every xml in the public folder and redirect the client ...
8
votes
2answers
901 views

Using R to download zipped data file, extract, and import data

@EZGraphs on Twitter writes: "Lots of online csvs are zipped. Is there a way to download, unzip the archive, and load the data to a data.frame using R? #Rstats" I was also trying to do this today, ...
8
votes
2answers
2k views

Zip up all Paperclip attachments stored on S3

Paperclip is a great upload plugin for Rails. Storing uploads on the local filesystem or Amazon S3 seems to work well. I'd just assume store files on the localhost, but the use of S3 is required for ...
8
votes
5answers
1k views

What is zip (functional programming?)

I recently saw some Clojure or Scala (sorry I'm not familiar with them) and they did zip on a list or something like that. What is zip and where did it come from ?
8
votes
5answers
15k views

Extract files from ZIP file with VBScript

When extracting files from a ZIP file I was using the following. Sub Unzip(strFile) ' This routine unzips a file. NOTE: The files are extracted to a folder ' ' in the same location using the name of ...
8
votes
6answers
19k views

How to use System.IO.Compression to read/write ZIP files?

I know there are libraries out there for working with ZIP files. And, you can alternatively use the functionality built into Windows for working ZIP files. But, I'm wondering if anyone has worked out ...
8
votes
7answers
7k views

Add non-ASCII file names to zip in Java

What is the best way to add non-ASCII file names to a zip file using Java, in such a way that the files can be properly read in both Windows and Linux? Here is one attempt, adapted from ...
7
votes
4answers
345 views

Zip files with Java: Is there a limit?

I'm creating a backup routine for my application with Java. However, when the zip file is over 4GB, or has more than 65,000 files (approximately), the zip file is corrupted. I'm also testing the ...
7
votes
3answers
80 views

Potential Security Issues with PHP's ZipArchive

I want to allow members the option of uploading content using a zip file. Once uploaded, I want to use PHP's ZipArchive class to decompress the zip file contents to a directory, and then move the ...
7
votes
1answer
133 views

Does Ruby's Enumerable#zip create arrays internally?

In Ruby - Compare two Enumerators elegantly, it was said The problem with zip is that it creates arrays internally, no matter what Enumerable you pass. There's another problem with length of ...
7
votes
2answers
402 views

Setting correct permissions on generated zip-file in Django

I'm using Django and Python2.6 to generate a zip file of custom-rendered Django templates for each user to download a custom-made zip file. At the moment, the code in views.py looks like this: def ...
7
votes
2answers
152 views

DMG or Zip file for distribution to Macs?

What do you prefer and why? I've just finished my first Mac app and am wondering if this is an important decision.
7
votes
8answers
6k views

how to compress a String?

I use GZIPOutputStream or ZIPOutputStream to compress a String( my string.length() is less than 20), but the compress result is longer than original string. on some site, I found some friends said ...
7
votes
1answer
235 views

Zip-file that contains nothing but itself?

Just out of curiosity, does there exist a valid zip-file (according to format spec) that, contains nothing but itself? Put another way, does the function implemented by unzip have a fix-point? Can I ...
7
votes
6answers
3k views

Create normal zip file programmatically

I have seen many tutorials on how to compress a single file in c#. But I need to be able to create a normal *.zip file out of more than just one file. Is there anything in .NET that can do this? What ...

1 2 3 4 5 29