vote up 11 vote down star
7

How can I create 7-Zip archives from my C# console application? I need to be able to extract the archives using the regular, widely available 7-Zip program.


Here are my results with the examples provided as answers to this question

  • "Shelling out" to 7z.exe - this is the simplest and most effective approach, and I can confirm that it works nicely. As workmad3 mentions, I just need to guarantee that 7z.exe is installed on all target machines, which is something I can guarantee.
  • 7Zip in memory compression - this refers to compressing cookies "in-memory" before sending to the client; this method seems somewhat promising. The wrapper methods (wrapping the LZMA SDK) return type byte[]. When I write the byte[] array to a file, I can't extract it using 7-Zip (File.7z is not supported archive).
  • 7zSharp Wrapper (found on CodePlex) - this wraps the 7z exe/LZMA SDK. I referenced the project from my app, and it successfully created some archive files, but I was unable to extract the files using the regular 7-Zip program (File.7z is not supported archive).
  • 7Zip SDK aka LZMA SDK - I guess I'm not smart enough to figure out how to use this (which is why I posted here)... Any working code examples that demonstrate creating a 7zip archive that is able to be extracted by the regular 7zip program?
  • CodeProject C# (.NET) Interface for 7-Zip Archive DLLs - only supports extracting from 7zip archives... I need to create them!
  • SharpZipLib - According to their FAQ, SharpZipLib doesn't support 7zip.
flag

48% accept rate
2  
Do not write it's from Google when all link are from my post below. Not very respectful for people of have took the time to search for you some solutions. – Daok Oct 22 '08 at 14:18

5 Answers

vote up 7 vote down check

If you can guarantee the 7-zip app will be installed (and in the path) on all target machines, you can offload by calling the command line app 7z. Not the most elegant solution but it is the least work.

link|flag
We actually ship the 7z command line utility with our binaries and shell out to it. Works really well for us. – David Mohundro Oct 22 '08 at 13:16
vote up 17 vote down

EggCafe 7Zip cookie example This is an example (zipping cookie) with the DLL of 7Zip.

CodePlex Warper This is an open source project that warp zipping function of 7z.

7Zip SDK The official SDK for 7zip (C, C++, C#, Java) <---My suggestion

.Net zipping library by SharpDevelop.net

CodeProject example with 7zip

SharpZipLib Many zipping

link|flag
Summarize the link, and I'll upvote this. – Joel Coehoorn Oct 21 '08 at 14:15
Done and I added an open source project useful too. – Daok Oct 21 '08 at 14:17
I have looked through the code supplied from the first link - I don't need to compress a cookie, I would like to create a 7-Zip file. – Terrapin Oct 21 '08 at 14:19
LOL? Change the cookie by a string... a file or whatever... lol? – Daok Oct 21 '08 at 14:22
The best solution I posted is the 7zip SDK over here. Take the dll and zip. Job is done :) – Daok Oct 21 '08 at 14:23
show 9 more comments
vote up 3 vote down

I used the sdk.

eg:

using SevenZip.Compression.LZMA;
private static void CompressFileLZMA(string inFile, string outFile)
{
   SevenZip.Compression.LZMA.Encoder coder = new SevenZip.Compression.LZMA.Encoder();

   using (FileStream input = new FileStream(inFile, FileMode.Open))
   {
      using (FileStream output = new FileStream(outFile, FileMode.Create))
      {
          coder.Code(input, output, -1, -1, null);
          output.Flush();
      }
   }
}
link|flag
And how will you decompress the file? I tried to do the same using the SevenZip.Compression.LZMA.Decoder and calling it with Code(stream1, stream2, -1, -1, null); That gave an data exception from the framework. – karstenkousgaard May 26 at 9:19
vote up 1 vote down

SevenZipSharp is another solution. Creates 7-zip archives...

link|flag
vote up 0 vote down

SharpZipLib

I have used SharpZipLib in a production environment even though it is technically beta. I thought it worked well.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.