Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to compress a file and a directory in C#. I found some solution in Internet but they are so complex and I couldn't run them in my project. Can anybody suggest me a clear and effective solution?

Thank you,

share|improve this question
Why couldnt you run them in your project? – BugFinder Jun 22 '12 at 9:27
refer in .net 4.0 msdn.microsoft.com/en-us/library/ms404280.aspx – Romil Jun 22 '12 at 9:28
1  
possible duplicate of How to compress a directory into a zip file programmatically – ken2k Jun 22 '12 at 9:29
@BugFinder For example I found a solution in here cheeso.members.winisp.net/DotNetZipHelp/html/… bu I could not describe "ZipFile" in my project. Although I have added "using System.IO.Compression;" library, error didn't disappeared. There are a lot of code about ZipFile. Can be a problem about C#, Can i use this class in c#? – Selen Jun 22 '12 at 9:49
Did you download the component that goes with the code you linked? – BugFinder Jun 22 '12 at 9:50
show 12 more comments

7 Answers

You could use GZipStream in the System.IO.Compression namespace

.NET 2.0.

public static void CompressFile(string path)
{
    FileStream sourceFile = File.OpenRead(path);
    FileStream destinationFile = File.Create(path + ".gz");

    byte[] buffer = new byte[sourceFile.Length];
    sourceFile.Read(buffer, 0, buffer.Length);

    using (GZipStream output = new GZipStream(destinationFile,
        CompressionMode.Compress))
    {
        Console.WriteLine("Compressing {0} to {1}.", sourceFile.Name,
            destinationFile.Name, false);

        output.Write(buffer, 0, buffer.Length);
    }

    // Close the files.
    sourceFile.Close();
    destinationFile.Close();
}

.NET 4

public static void Compress(FileInfo fi)
    {
        // Get the stream of the source file.
        using (FileStream inFile = fi.OpenRead())
        {
            // Prevent compressing hidden and 
            // already compressed files.
            if ((File.GetAttributes(fi.FullName) 
                & FileAttributes.Hidden)
                != FileAttributes.Hidden & fi.Extension != ".gz")
            {
                // Create the compressed file.
                using (FileStream outFile = 
                            File.Create(fi.FullName + ".gz"))
                {
                    using (GZipStream Compress = 
                        new GZipStream(outFile, 
                        CompressionMode.Compress))
                    {
                        // Copy the source file into 
                        // the compression stream.
                    inFile.CopyTo(Compress);

                        Console.WriteLine("Compressed {0} from {1} to {2} bytes.",
                            fi.Name, fi.Length.ToString(), outFile.Length.ToString());
                    }
                }
            }
        }
    }

http://msdn.microsoft.com/en-us/library/ms404280.aspx

share|improve this answer
Thanks for your solution but i have an error about "CopyTo" in this snippet. I couldn't solve this. – Selen Jun 22 '12 at 11:16
@Romil - no, the namespace is available in 2.0., I checked. You can also find proof at: msdn.microsoft.com/en-us/library/ms404280(v=vs.80).aspx – Darren Davies Jun 22 '12 at 11:42
@DarrenDavies, uow are correct, it was introduced in 2.0. I read it incorrectly, I need more cofee. – Romil Jun 22 '12 at 11:51
@Romil - okay. If you downvoted, can you please remove. Thanks. – Darren Davies Jun 22 '12 at 11:52
1  
I have revert the downvote for your updated answer. – Romil Jun 22 '12 at 12:03
show 6 more comments

There is a built-in class in System.IO.Packaging called the ZipPackage:

http://msdn.microsoft.com/en-us/library/system.io.packaging.zippackage(v=vs.100).aspx

share|improve this answer
2  
No available in .NET 2.0 like the user asked – Arnaud F. Jun 22 '12 at 9:33

http://www.icsharpcode.net/opensource/sharpziplib/

share|improve this answer
So thanks for your proposed solution. I am examining it. – Selen Jun 22 '12 at 10:02
@aprogrammer You're welcome. I'm sorry for not posting some code but I don't know exactly where I have it and I don't have much time right now – CarlosJ Jun 22 '12 at 10:42

Use http://dotnetzip.codeplex.com/ to ZIP files or directory, there is no builtin class to do it directly in .NET

share|improve this answer
Thank you @Arnaud F. I saw this but my programme doesn't recognize ZipFile. How can i describe it in my programme? – Selen Jun 22 '12 at 11:22

Source code taken from MSDN that is compatible to .Net 2.0 and above

public static void CompressFile(string path)
        {
            FileStream sourceFile = File.OpenRead(path);
            FileStream destinationFile = File.Create(path + ".gz");

            byte[] buffer = new byte[sourceFile.Length];
        sourceFile.Read(buffer, 0, buffer.Length);

        using (GZipStream output = new GZipStream(destinationFile,
            CompressionMode.Compress))
        {
            Console.WriteLine("Compressing {0} to {1}.", sourceFile.Name,
                destinationFile.Name, false);

            output.Write(buffer, 0, buffer.Length);
        }

        // Close the files.
        sourceFile.Close();
        destinationFile.Close();
    }  
share|improve this answer
I tried to use this snipped but i have a problem about reaching the file path. I have an error about it? What can be the reason about not to reach the file path? – Selen Jun 22 '12 at 14:34
are you using windows 7. – Romil Jun 22 '12 at 14:35
Yes, I'm using Windows7. – Selen Jun 24 '12 at 13:06
TRy to create file on D: Drive (other than OS drive). You should face access issue in windows 7, catch the exception in try...catch and verify. – Romil Jun 24 '12 at 13:18

You can just use ms-dos command line program compact.exe. Look on a parameters compact.exe in cmd and start this process using .NET method Process.Start().

share|improve this answer

I'm adding this answer as I've found an easier way than any of the existing answers:

  1. Install DotNetZip DLLs in your solution (easiest way is to install the package from nuget)
  2. Add a reference to the DLL.
  3. Import the namespace by adding: using Ionic.Zip;
  4. Zip your file

Code:

using (ZipFile zip = new ZipFile())
{
    zip.AddFile("C:\test\test.txt");
    zip.AddFile("C:\test\test2.txt");
    zip.Save("C:\output.zip");
}

If you don't want the original folder structure mirrored in the original zip file, then look at the overrides for AddFile() and AddFolder() etc.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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