In this example, we will show that a directory,which contains lots of file, converted into compressed folder. There are many steps for designing this algorithm, these are
Step-1 : Add 'System.IO.Compression.FileSystem' assembly into your project.
assembly exist into your windows directory
(~/Windows/Microsoft.NET/assembly/GAC_MSIL/System.IO.Compression.FileSystem/(Your .NET Version)
Step-1 : Add 'System.IO.Compression.FileSystem' assembly into your project.
assembly exist into your windows directory
(~/Windows/Microsoft.NET/assembly/GAC_MSIL/System.IO.Compression.FileSystem/(Your .NET Version)
Step-2 : copy this code, paste into your source code
using System.IO.Compression;
using System.IO;
namespace compressiondecompress
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
string source = @"e:\web";
string dest = @"e:\web.zip";
ZipFile.CreateFromDirectory(source, dest);
}
}
}
Code generate the following output