Click here to Skip to main content
15,878,748 members
Articles / Programming Languages / C#

C# Use Zip Archives without External Libraries

Rate me:
Please Sign up or sign in to vote.
4.92/5 (80 votes)
12 Jun 2011CPOL3 min read 295.8K   8K   150   125
C# use Zip archives without external libraries

Introduction

I found a lot of articles on how to access Zip archives in C# but all with significant disadvantages. The main problem is that Microsoft has Zip archives implemented in the operating system but there is no official API that we can use. In C# for example, we have the System.IO.Compression.GZip but there is no adequate System.IO.Compression.Zip class.

There are some free .NET compression libraries like SharpZipLib and .NET Zip Library, but this leads to additional installation effort and licensing problems.

It is also possible to use the free J# Library. J# has included Zip to keep compatible with the Java libraries. But to bundle a 3.6 MB DLL vjslib.dll, just to support Zip, seems like a really goofy hack.

Since .NET 3.0, we can use the System.IO.Packaging ZipPackage class in WindowsBase.DLL. It's just 1.1 MB, and it just seems to fit a lot better than importing Java libraries.

Problem only that the ZipPackage class isn't a generic Zip implementation, it's a packaging library for formats like XPS and Office Open XML that happen to use Zip.

To access simple Zip archives with ZipPackage fails because the content is checked for Package conventions.

For example, there has to be a file [Content_Types].xml in the root and only files with specified extensions are accessible. Filenames with special characters and spaces are not allowed and the access time is not the best because of the additional Package link logic.

However, the assembly WindowsBase.DLL is preinstalled and the generic Zip implementation is inside. The only problem is that the generic Zip classes are not public and visible for the programmers. But there is a simple way to get access to this hidden API and I wrote a small wrapper class for this.

Background

A quick check in the Object Browser shows us that WindowsBase.DLL has a namespace MS.Internal.IO.Zip. This sounds good, but there are no public classes visible.

However, the following call:

C#
var types = typeof(System.IO.Packaging.Package).Assembly.GetTypes();

gives us 824 class types, public and non-public and especially one with the name MS.Internal.IO.Zip.ZipArchive. Now it is easy to get this special class type and the methods and properties:

C#
var type = typeof(System.IO.Packaging.Package).Assembly.GetType
		("MS.Internal.IO.Zip.ZipArchive");
var static_methodes = type.GetMethods(BindingFlags.Static | 
		BindingFlags.Public | BindingFlags.NonPublic);
var nostatic_methodes = type.GetMethods(BindingFlags.Instance | 
		BindingFlags.Public | BindingFlags.NonPublic);

and we get the most important methods:

C#
static ZipArchive OpenOnFile(string path, FileMode mode, 
	FileAccess access, FileShare share, bool streaming);
static ZipArchive OpenOnStream(Stream stream, FileMode mode, 
	FileAccess access, bool streaming);
ZipFileInfo AddFile(string path, 
	CompressionMethodEnum compmeth, DeflateOptionEnum option);
ZipFileInfo GetFile(string name);
ZipFileInfo DeleteFile(string name);
ZipFileInfoCollection GetFiles();
void Dispose();

The same procedure for ZipFileInfo and we get:

C#
Stream GetStream(FileMode mode, FileAccess access);

and properties like: Name, LastModFileDateTime, FolderFlag...
This is all what we need to implement a small wrapper class and access over Reflection:

C#
class ZipArchive : IDisposable
{
  private object external;
  public static ZipArchive OpenOnFile
      (string path, FileMode mode, FileAccess access, FileShare share, bool streaming)    
  {
    var type = typeof(System.IO.Packaging.Package).Assembly.GetType
		("MS.Internal.IO.Zip.ZipArchive");
    var meth = type.GetMethod("OpenOnFile", BindingFlags.Static | 
		BindingFlags.Public | BindingFlags.NonPublic);
    return new ZipArchive { external = meth.Invoke(null, new object[] 
		{ path, mode, access, share, streaming }) };
  } 
  //...
  public class ZipFileInfo //...
}

The complete ZipArchive wrapper implementation is in the demo project ZipArchiveTest in Program.cs.
Only 97 lines for this class and we can use it in a code sequence like this:

C#
var str = new MemoryStream();

//create some files:
using (var arc = ZipArchive.OpenOnStream(str))
{
  var doc1 = new XDocument(new XElement
	("root", new XElement("item"), new XElement("item"), new XElement("item")));
  var doc2 = new XDocument(new XElement("root", Enumerable.Repeat
		("item", 1000).Select(p => new XElement(p))));
  using (var fs = arc.AddFile("test1.xml").GetStream
		(FileMode.Open, FileAccess.ReadWrite)) doc1.Save(fs);
  using (var fs = arc.AddFile("test2.xml").GetStream
		(FileMode.Open, FileAccess.ReadWrite)) doc2.Save(fs);
}

// read the files:
using (var arc = ZipArchive.OpenOnStream(str))
{
  var doc1 = XDocument.Load(arc.GetFile("test1.xml").GetStream());
  var doc2 = XDocument.Load(arc.GetFile("test2.xml").GetStream());
  var doc3 = XDocument.Load(arc.GetFile("dir/test3.xml").GetStream());
}

Using the Demo

The demo program ZipArchiveTest using the ZipArchive class is as small as possible and can show the content of Zip archives without any restrictions. Double click to files in the ListBox opens a new window to show the file content as text.

Image 1

Conclusion

Microsoft should publish its hidden ZipArchive class, but till then, we can use such a simple wrapper to save terabytes of data worldwide.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Germany Germany
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralMy vote of 5 Pin
Yvan Rodrigues13-Jun-11 15:57
professionalYvan Rodrigues13-Jun-11 15:57 
GeneralNever use internal classes/methods Pin
TimMerksem13-Jun-11 11:18
TimMerksem13-Jun-11 11:18 
GeneralRe: Never use internal classes/methods Pin
D. Christian Ohle13-Jun-11 12:12
D. Christian Ohle13-Jun-11 12:12 
JokeRe: Never use internal classes/methods Pin
TimMerksem13-Jun-11 12:16
TimMerksem13-Jun-11 12:16 
GeneralSecurity Implications Pin
Nicholas Carey13-Jun-11 6:49
Nicholas Carey13-Jun-11 6:49 
GeneralRe: Security Implications Pin
D. Christian Ohle13-Jun-11 7:42
D. Christian Ohle13-Jun-11 7:42 
GeneralNew ZipArchive class with out reflection calls. Pin
D. Christian Ohle13-Jun-11 6:04
D. Christian Ohle13-Jun-11 6:04 
GeneralRe: New ZipArchive class with out reflection calls. Pin
kornman0014-Jun-11 10:04
kornman0014-Jun-11 10:04 
GeneralRe: New ZipArchive class with out reflection calls. Pin
D. Christian Ohle16-Jun-11 8:23
D. Christian Ohle16-Jun-11 8:23 
GeneralThanks you interesting [modified] Pin
Nicolas Dorier12-Jun-11 11:46
professionalNicolas Dorier12-Jun-11 11:46 
GeneralRe: Thanks you interesting Pin
D. Christian Ohle12-Jun-11 13:44
D. Christian Ohle12-Jun-11 13:44 
GeneralRe: Thanks you interesting Pin
Nicolas Dorier12-Jun-11 21:11
professionalNicolas Dorier12-Jun-11 21:11 
GeneralRe: Thanks you interesting Pin
D. Christian Ohle12-Jun-11 23:20
D. Christian Ohle12-Jun-11 23:20 
GeneralMy vote of 5 Pin
chiao.vincent12-Jun-11 4:27
chiao.vincent12-Jun-11 4:27 
GeneralPerformance Pin
Jouke van der Maas12-Jun-11 1:54
Jouke van der Maas12-Jun-11 1:54 
GeneralRe: Performance Pin
D. Christian Ohle12-Jun-11 4:10
D. Christian Ohle12-Jun-11 4:10 
GeneralRe: Performance Pin
D. Christian Ohle12-Jun-11 5:20
D. Christian Ohle12-Jun-11 5:20 
GeneralRe: Performance Pin
kornman0012-Jun-11 15:49
kornman0012-Jun-11 15:49 
GeneralRe: Performance Pin
dave.dolan12-Jun-11 17:00
dave.dolan12-Jun-11 17:00 
GeneralRe: Performance Pin
D. Christian Ohle13-Jun-11 0:30
D. Christian Ohle13-Jun-11 0:30 
GeneralRe: Performance Pin
D. Christian Ohle13-Jun-11 0:09
D. Christian Ohle13-Jun-11 0:09 
GeneralRe: Performance Pin
D. Christian Ohle13-Jun-11 6:55
D. Christian Ohle13-Jun-11 6:55 
GeneralRe: Performance Pin
tbayart14-Jun-11 1:38
professionaltbayart14-Jun-11 1:38 
GeneralRe: Performance Pin
D. Christian Ohle14-Jun-11 2:00
D. Christian Ohle14-Jun-11 2:00 
GeneralRe: Performance Pin
Mike Marynowski13-Jun-11 20:11
professionalMike Marynowski13-Jun-11 20:11 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.