Tagged Questions

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 ...
4
votes
1answer
284 views

C# - How do I create a regular ZIP archive using the 7-zip library(i.e. not a .7z, but .zip)?

this is my first question on here, so bear with me. What I'm aiming to do is just create a basic .zip archive in C#. I have tried using the built-in GZipStream class of .NET and have managed to ...
4
votes
1answer
464 views

What compression format should we use; should we lay DEFLATE (.zip) to rest? [closed]

With most Linux distributions dropping gzip and bzip2 in favor of LZMA2 for compressing their packages, and many open source implementations for many platforms, I wonder: Shouldn't we lay DEFLATE and ...
3
votes
3answers
83 views

Creating files in memory then pushing them into a zip archive using 7-zip commandline?

I'm trying to create zip files on the fly in C++, I'm using 7-zip to try and accomplish this, specifically I want to use the 7-zip commandline (I'm willing to try and modify its source to accomplish ...
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
802 views

Ruby / rubyzip alternative capable of handling rar/tar/zip/7z?

I was wondering if anyone knows of rubyzip alternatives for Ruby, that can handle various formats in particular zip / rar / 7z? I know of libarchive, but it's not complete for my purposes ( it's a ...
2
votes
5answers
271 views

Any good tool for browsing archives(Ear,War, Jar) on OSX

On Linux i can use file-roller and open an browse the content of an EAR file without manually open it, can even dig into contained WAR file and within that JAR files quickly. This is another of those ...
2
votes
2answers
1k views

Is there a task supporting modern multithreaded archivers - 7zip, winrar etc.?

We are using the Ant Zip task, which is a bit obsolete (low processing speed for big files). Can anyone point me to a mature Ant task, ready for production use, that supports multithreaded ...
1
vote
1answer
258 views

7-Zip 7za Command Line Can't Find the Specified File

I have C# program using 7za.exe to check a zip archive using the "l" command and then extract it using the "e" command. Information about 7-Zip command line can be found at: ...
1
vote
1answer
285 views

How can I extract a multi-volume zip file using SharpZipLib in C#?

I have a single file, Setup1.cab, which is split up into Setup1.zip.001 and Setup1.zip.002 that I used 7zip to archive. Once those volumes reach their destination, I'd like to be able to use C# to ...
1
vote
1answer
656 views

How do I know if 7zip used AES256? [closed]

I originally was using WinZip15 to create .ZIP files with AES256 which we later package into .EXE files using WinZip's self extracting tool (since we can't be sure the people we are giving the ...
0
votes
0answers
50 views

Add files in period of time(asynchronously) to Sevenzipsharp and Extract them asynchronously

I use sevenzipsharp to archive files. I need add files in a specific zip file name asynchronously. for example add 1.jpg to myzip.7z , add 2.jpg to myzip.7z 2seconds later, add 3.jpg to myzip.7z ...
0
votes
1answer
88 views

How to execute 7zip commands from nant script?

I need to execute 7zip commands from nant script. How can I do that? I have tried it like this, but it is not working &ltexec program="7z.exe" basedir="${sevenzipinstalldir}" commandline="7z ...
0
votes
1answer
140 views

Need to pick a library for compression (Using c++ 64 bit environment windows)

I need to create archive files out of a stream of data. The program should be written in C++ and should be run as a 64 bit program on Windows OS. I am looking into Zlib and 7-Zip libraries but have no ...
0
votes
2answers
696 views

Determine dynamic file name in DOS batch script?

We have a single file in a fixed directory that will have the name database-x.x.x.zip where x.x.x is a version number that can change. We want to create a batch script that will unzip this file - we ...
0
votes
1answer
1k views

Creating Batch File to Back Up Specified Folder

I am actually pretty new to this batch file thing. I know it's important to know at least the basic commands. Could somebody help me figure out how to do the following? Zipping a specified folder. ...