There is an open source project to use with your projects. It's easy to use.
dotnetzip.codeplex.com
Let's zip a folder :)
1 using (ZipFile zip = new ZipFile())
2 {
3 zip.AddDirectory("c:\somedirectory");
4 zip.Comment = "This zip was created at " + System.DateTime.Now.ToString("G");
5 zip.Save("nameofthezipfile.zip");
6 }
Happy coding...
Bu yazıyı ilk değerlendiren siz olun
- Currently 0/5 Stars.
- 1
- 2
- 3
- 4
- 5