13
votes
6answers
947 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?
12
votes
8answers
740 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 …
11
votes
5answers
1k 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 …
11
votes
7answers
850 views
Open-source zip library for .NET?
Does anyone know of a good open-source zipping library for .NET?
11
votes
9answers
4k views
Windows built-in ZIP compression script-able?
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 …
8
votes
2answers
2k 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 …
7
votes
8answers
742 views
recommend a library/API to unzip file in C#
Hello everyone,
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 …
7
votes
7answers
870 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.
7
votes
6answers
623 views
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 …
7
votes
2answers
714 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
10answers
5k 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.
6
votes
3answers
238 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 …
6
votes
5answers
415 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 ?
6
votes
4answers
249 views
Estimating zip size/creation time.
I need to create ZIP archives on demand, using either Python zipfile module or unix command line utilities.
Resources to be zipped are often > 1GB and not necessarily compression-friendly.
How do I …
6
votes
4answers
381 views
C++ compression (zip) library for closed-source app.
Please recommend a C++ compression (zip) library for a commercial, closed-source application. So, not a GPL license.
This is for my day job...
