Top "Zip" questions

ZIP is a format for compressed file archives, allowing packaging of multiple files and directories into a single file.

Create zip file from byte[]

I am trying to create a Zip file in .NET 4.5 (System.IO.Compression) from a series of byte arrays. As …

c# .net asp.net-mvc zip .net-4.5
Make tar file by Java

I want to use Java to compress a folder to a tar file (in programmatic way). I think there must …

java compression zip tar
Extract a ZIP file programmatically by DotNetZip library?

I have a function that get a ZIP file and extract it to a directory (I use DotNetZip library.) public …

c# zip extract dotnetzip
Gradle task to create a zip archive of a directory

I have a gradle task to create a zip archive of a directory. The gradle task is: task archiveReports(type: …

gradle zip build.gradle archive
How to unzip a file with Python 2.4?

I'm having a hard time figuring out how to unzip a zip file with 2.4. extract() is not included in 2.4. I'm …

python zip zipfile python-2.4
How to browse a .zip file in IntelliJ (or .jar, etc.)

I'd like to be able to "open up" (without unzipping) .zip files or .jar files in IntelliJ much like you …

intellij-idea zip
Creating Zip Files from Memory Stream C#

Basically the user should be able to click on one link and download multiple pdf files. But the Catch is …

c# zip memorystream
Extracting a zipfile to memory?

How do I extract a zip to memory? My attempt (returning None on .getvalue()): from zipfile import ZipFile from StringIO …

python memory zip zipfile stringio
Creating zip or tar.gz archive without exec

Is there is any safe way to create a zip archive, or tar.gz from php without using exec command ? …

php zip tar
Compress a single file using C#

I am using .NET 4.5, and the ZipFile class works great if I am trying to zip up an entire directory …

c# .net zip zipfile