Skip to content

JosePineiro/SevenZipSharp

 
 

Repository files navigation

SevenZipSharp

This is a fork of SevenZipSharp from Codeplex by Codeplex user [markhor] (https://www.codeplex.com/site/users/view/markhor), with community sumbitted patches from the codeplex site up through Feb 25, 2015. It also contains my own fixes/additions. This project has by all accounts been abandoned, and Codeplex is no longer supporting svn access, therefore forking it seemed to be the right thing to do.

The below is verbatim from the Codeplex site - I will update it a bit later.

Project Description
Managed 7-zip library written in C# that provides data (self-)extraction and compression (all 7-zip formats are supported). It wraps 7z.dll or any compatible one and makes use of LZMA SDK.

General
SevenZipSharp is an open source wrapper for 7-zip released under LGPL v3.0. It exploits the native 7zip dynamic link library through its COM interface and exports classes to work with various file archives. The project appeared as an improvement of http://www.codeproject.com/KB/DLL/cs_interface_7zip.aspx. It supports .NET and Windows Mobile .NET Compact.

The solution consists of SevenZipSharp library itself, console, WinForms and WPF test applications and the documentation. All are built with Microsoft Visual Studio 2008 or 2010 and under .NET 2.0 (up to 4.0).
Sandcastle is used to build the library documentation.
SevenZipSharp uses JetBrains ReSharper to maintain the quality of the code and NDepend to collect code statistics and audit the whole project. Special thanks to SciTech Software for .NET Memory Profiler.

Quick start
SevenZipSharp exports three main classes - SevenZipExtractor, SevenZipCompressor and SevenZipSfx.
SevenZipExtractor is a 7-zip unpacking front-end, it allows either to extract archives or LZMA-compressed byte arrays.
SevenZipCompressor is a 7-zip pack ingfront-end, it allows either to compress archives or byte arrays.
SevenZipSfx is a special class to create self-extracting archives. It uses the embedded sfx module by Oleg Scherbakov .
LzmaEncodeStream/LzmaDecodeStream are special fully managed classes derived from Stream to store data compressed with LZMA and extract it.
See SevenZipTest/Program.cs for simple code examples; SevenZipTestForms is the GUI demo application.
You may find useful the SevenZipSharp documentation provided in CHM format. On Windows XP SP2 or later or Vista unblock the file to view it correctly.

Native libraries
SevenZipSharp requires a 7-zip native library to function. You can specify the path to a 7-zip dll (7z.dll, 7za.dll, etc.) in LibraryManager.cs at compile time, your app.config or via SetLibraryPath() method at runtime. + "7z.dll" is the default path. For 64-bit systems, you must use the 64-bit versions of those libraries.
7-zip ships with 7z.dll, which is used for all archive operations (usually it is "Program Files\7-Zip\7z.dll"). 7za.dll is a light version of 7z.dll, it supports only 7zip archives. You may even build your own library with formats you want from 7-zip sources. SevenZipSharp will work with them all.

Main features

  • Encryption and passwords are supported.
  • Since the 0.26 release, archive properties are supported.
  • Since the 0.28 release, multi-threading is supported.
  • Since the 0.29 release, streaming is supported.
  • Since the 0.41 release, you can specify the compression level and method.
  • Since the 0.50 release, archive volumes are supported.
  • Since the 0.51 release, archive updates are supported (0.52 - ModifyArchive). You must use the most recent 7z.dll (v>=9.04) for this feature.
  • Since the 0.61 release, Windows Mobile ARM platforms are supported.
  • Since the 0.62 release, extraction from SFX archives, as well as some other formats with embedded archives is supported.

Extraction is supported from any archive format in InArchiveFormat - such as 7-zip itself, zip, rar or cab and the format is automatically guessed by the archive signature (since the 0.43 release).
You can compress streams, files or whole directories in OutArchiveFormat - 7-zip, Xz, Zip, GZip, BZip2 and Tar.
Please note that GZip and BZip2 compresses only one file at a tme.

SevenZipSharpMobile (SevenZipSharp for Windows Mobile) does not differ much from its big brother. See the difference table below.

Self-extracting archives
SevenZipSfx appeared in the 0.42 release. It supports custom sfx modules. The most powerful one is embedded in the assembly, the other lie in SevenZip/sfx directory. Apart from usual sfx, you can make even small installations with the help of SfxSettings scenarios. Refer to the "configuration file parameters" for the complete command list.

Advanced work with SevenZipCompressor
SevenZipCompressor.CustomParameters is a special property to set compression switches, compatible with command line switches of 7z.exe. The complete list of those switches is in 7-zip.chm of 7-Zip installation. For example, to turn on multi-threaded compression, code
.CustomParameters.Add("mt", "on");
For the complete switches list, refer to SevenZipDoc.chm in the 7-zip installation.

Conditional compilation symbols
Since the 0.50 release, compilation symbols are supported: UNMANAGED, COMPRESS, SFX, LZMA_STREAM.

  • UNMANAGED allows the main COM part of SevenZipSharp to be built.
  • COMPRESS allows the compression classes to be built.
  • SFX allows the sfx classes to be built.
  • LZMA_STREAM allows LzmaEncodeStream/LzmaDecodeStream to be built.
  • CS4 enables features of C# 4 in Visual Studio 2010.

SevenZipSharp for Windows Mobile

Item SevenZipSharp SevenZipSharpMobile
License LGPLv3 GPLv3
Platform Windows, x86 or x64, .NET 2.0+ Windows Mobile 5+, ARM4+, .NET 3.5+
Third-parties None [OpenNETCF](http://www.opennetcf.com/Default.aspx?tabid=65)
7-zip native DLL x86 version for 32-bit, x64 for 64-bit ARM version, available exclusively here, on CodePlex
Wrapped features Full set corresponding to the native 7-zip library kind you use Full set except the ability to set custom library path via SetLibraryPath
Formats Full set corresponding to the native 7-zip library kind you use Potentially **full set**, but success depends on the amount of memory the device has
CurrentLibraryFeatures benchmark 111111111111111111 110111111011111011

XZ compression/decompression fails, 7z PPMD method fails. Those bugs will probably be fixed in the future release.

I used Windows Mobile 6 SDK, but I believe the 5th version will also work.
Due to the absence of Marshal.GetDelegateFromFunctionPointer one is unable to load a 7-zip dll completely at runtime, hence SetLibraryPath does not work. You must deploy 7z.dll with your solution, just like SevenZipSharpMobileTest project does.
Windows Mobile 5+ supports COM just like an ordinary Windows does, so I only had to build a 7-zip library for the ARM WinCE architecture. This was a small challenge.
Real ability to extract big files depends on the amount of memory your device has. I am waiting for your test results.

About

Fork of SevenZipSharp from Codeplex with patches up to Feb 25, 2015 and my own fixes/additions

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C# 99.7%
  • XSLT 0.3%