Click here to Skip to main content
15,885,757 members
Articles / Programming Languages / C#
Tip/Trick

Zipping using System.IO.Compression

Rate me:
Please Sign up or sign in to vote.
4.96/5 (32 votes)
1 Nov 2013CPOL 167.4K   80   37
This post shows how to create a zip package using System.IO.Compressio.

To use System.IO.Compression, you need to add a reference to WindowsBase.dll.

The following code snippet shows how to use some of the provided functionalities:

C#
using System;
using System.Collections.Generic;
using System.IO;
using System.IO.Packaging;

public static class ZipHelper
{
  public static void ZipFiles(string path, IEnumerable<string> files, 
         CompressionOption compressionLevel = CompressionOption.Normal)
  {
    using (FileStream fileStream = new FileStream(path, FileMode.Create))
    {
      ZipHelper.ZipFilesToStream(fileStream, files, compressionLevel);
    }
  }

  public static byte[] ZipFilesToByteArray(IEnumerable<string> files, 
         CompressionOption compressionLevel = CompressionOption.Normal)
  {
    byte[] zipBytes = default(byte[]);
    using (MemoryStream memoryStream = new MemoryStream())
    {
      ZipHelper.ZipFilesToStream(memoryStream, files, compressionLevel);
      memoryStream.Flush();
      zipBytes = memoryStream.ToArray();
    }

    return zipBytes;
  }

  public static void Unzip(string zipPath, string baseFolder)
  {
    using (FileStream fileStream = new FileStream(zipPath, FileMode.Open))
    {
      ZipHelper.UnzipFilesFromStream(fileStream, baseFolder);
    }
  }

  public static void UnzipFromByteArray(byte[] zipData, string baseFolder)
  {
    using (MemoryStream memoryStream = new MemoryStream(zipData))
    {
      ZipHelper.UnzipFilesFromStream(memoryStream, baseFolder);
    }
  }

  private static void ZipFilesToStream(Stream destination, 
          IEnumerable<string> files, CompressionOption compressionLevel)
  {
    using (Package package = Package.Open(destination, FileMode.Create))
    {
      foreach (string path in files)
      {
        // fix for white spaces in file names (by ErrCode)
        Uri fileUri = PackUriHelper.CreatePartUri(new Uri(@"/" + 
                      Path.GetFileName(path), UriKind.Relative));
        string contentType = @"data/" + ZipHelper.GetFileExtentionName(path);

        using (Stream zipStream = 
                package.CreatePart(fileUri, contentType, compressionLevel).GetStream())
        {
          using (FileStream fileStream = new FileStream(path, FileMode.Open))
          {
            fileStream.CopyTo(zipStream);
          }
        }
      }
    }
  }

  private static void UnzipFilesFromStream(Stream source, string baseFolder)
  {
    if (!Directory.Exists(baseFolder))
    {
      Directory.CreateDirectory(baseFolder);
    }

    using (Package package = Package.Open(source, FileMode.Open))
    {
      foreach (PackagePart zipPart in package.GetParts())
      {
        // fix for white spaces in file names (by ErrCode)
        string path = Path.Combine(baseFolder, 
             Uri.UnescapeDataString(zipPart.Uri.ToString()).Substring(1));

        using (Stream zipStream = zipPart.GetStream())
        {
          using (FileStream fileStream = new FileStream(path, FileMode.Create))
          {
            zipStream.CopyTo(fileStream);
          }
        }
      }
    }
  }

  private static string GetFileExtentionName(string path)
  {
    string extention = Path.GetExtension(path);
    if (!string.IsNullOrWhiteSpace(extention) && extention.StartsWith("."))
    {
      extention = extention.Substring(1);
    }

    return extention;
  }
}

Enjoy it!

License

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


Written By
Architect
United States United States
I got my BS in Software Engineering from Iran, worked there for 4.5 years mainly in industrial automation field. Then I moved to Australia. In Australia, I had a great chance to work at some big companies. Since 2009 I have been living in the States. I received my MS in Information Systems from Illinois State University. Currently, I am a Senior Software Development Engineer.

Comments and Discussions

 
GeneralRe: Sorry, no malice intended here, but this is a general commen... Pin
Darren Doody26-Jan-12 15:14
professionalDarren Doody26-Jan-12 15:14 
Sorry, no malice intended here, but this is a general comment for yourself and all posters. The application I develop is targeted at .Net 2.0. As such, no version of WindowsBase.dll is available to me, so your article really needs to EXCLUDE versions pre-3.0. It is an interesting article, and may come in useful to me - someday - but when looking for a solution to a problem, I don't want to read a whole article, then try and implement it only to find I can't because it's targeted at a later framework. We don't all have the luxury of choosing the version of the framework we are working with.

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.