Compressing / Decompressing Folders & Files

C#.NetFileCompression

C# Problem Overview


Does anyone know of a good way to compress or decompress files and folders in C# quickly? Handling large files might be necessary.

C# Solutions


Solution 1 - C#

The .Net 2.0 framework namespace System.IO.Compression supports GZip and Deflate algorithms. Here are two methods that compress and decompress a byte stream which you can get from your file object. You can substitute GZipStream for DefaultStream in the methods below to use that algorithm. This still leaves the problem of handling files compressed with different algorithms though.

public static byte[] Compress(byte[] data)
{
    MemoryStream output = new MemoryStream();

    GZipStream gzip = new GZipStream(output, CompressionMode.Compress, true);
    gzip.Write(data, 0, data.Length);
    gzip.Close();

    return output.ToArray();
}

public static byte[] Decompress(byte[] data)
{
    MemoryStream input = new MemoryStream();
    input.Write(data, 0, data.Length);
    input.Position = 0;

    GZipStream gzip = new GZipStream(input, CompressionMode.Decompress, true);
		
    MemoryStream output = new MemoryStream();
		
    byte[] buff = new byte[64];
    int read = -1;
		
    read = gzip.Read(buff, 0, buff.Length);
	
    while (read > 0)
    {
        output.Write(buff, 0, read);
        read = gzip.Read(buff, 0, buff.Length);
    }
		
    gzip.Close();
		
    return output.ToArray();
}

Solution 2 - C#

I've always used the SharpZip Library.

Here's a link

Solution 3 - C#

As of .Net 1.1 the only available method is reaching into the java libraries.

Using the Zip Classes in the J# Class Libraries to Compress Files and Data with C#

Not sure if this has changed in recent versions.

Solution 4 - C#

You can use a 3rd-party library such as SharpZip as Tom pointed out.

Another way (without going 3rd-party) is to use the Windows Shell API. You'll need to set a reference to the Microsoft Shell Controls and Automation COM library in your C# project. Gerald Gibson has an example at:

Internet Archive's copy of the dead page

Solution 5 - C#

My answer would be close your eyes and opt for DotNetZip. It's been tested by a large community.

Solution 6 - C#

GZipStream is a really good utility to use.

Solution 7 - C#

This is very easy to do in java, and as stated above you can reach into the java.util.zip libraries from C#. For references see:

java.util.zip javadocs
sample code

I used this a while ago to do a deep (recursive) zip of a folder structure, but I don't think I ever used the unzipping. If I'm so motivated I may pull that code out and edit it into here later.

Solution 8 - C#

Another good alternative is also DotNetZip.

Solution 9 - C#

You can create zip file with this method:

public async Task<string> CreateZipFile(string sourceDirectoryPath, string name)
{
    var path = HostingEnvironment.MapPath(TempPath) + name;
    await Task.Run(() =>
    {
        if (File.Exists(path)) File.Delete(path);
        ZipFile.CreateFromDirectory(sourceDirectoryPath, path);
    });
    return path;
}

and then you can unzip zip file with this methods:

1- This method work with zip file path

public async Task ExtractZipFile(string filePath, string destinationDirectoryName)
{
    await Task.Run(() =>
    {
        var archive = ZipFile.Open(filePath, ZipArchiveMode.Read);
        foreach (var entry in archive.Entries)
        {
            entry.ExtractToFile(Path.Combine(destinationDirectoryName, entry.FullName), true);
        }
        archive.Dispose();
    });
}

2- This method work with zip file stream

public async Task ExtractZipFile(Stream zipFile, string destinationDirectoryName)
{
    string filePath = HostingEnvironment.MapPath(TempPath) + Utility.GetRandomNumber(1, int.MaxValue);
    using (FileStream output = new FileStream(filePath, FileMode.Create))
    {
        await zipFile.CopyToAsync(output);
    }
    await Task.Run(() => ZipFile.ExtractToDirectory(filePath, destinationDirectoryName));
    await Task.Run(() => File.Delete(filePath));
}

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionDylanJView Question on Stackoverflow
Solution 1 - C#Dave AndersonView Answer on Stackoverflow
Solution 2 - C#Tom GrochowiczView Answer on Stackoverflow
Solution 3 - C#alumbView Answer on Stackoverflow
Solution 4 - C#user2189331View Answer on Stackoverflow
Solution 5 - C#Amit JokiView Answer on Stackoverflow
Solution 6 - C#DarrylView Answer on Stackoverflow
Solution 7 - C#shsteimerView Answer on Stackoverflow
Solution 8 - C#RokView Answer on Stackoverflow
Solution 9 - C#mohsen_1687View Answer on Stackoverflow