Whats the best way to zip up files using C#? Ideally I want to be able to seperate files into a single archive.
|
2
|
|||||
|
|
|
You can use DotNetZip to archieve this. It´s free to use in any application. Here´s some sample code:
|
|||
|
|
|
Take a look at this library: http://www.icsharpcode.net/OpenSource/SharpZipLib/ It is pretty comprehensive, it deals with many formats, is open-source, and you can use in closed-source commercial applications. It is very simple to use:
|
||
|
|
|
|
There are a few librarys around - the most popular of which are DotNetZip and SharpZipLib. |
||
|
|
|
|
Have you looked at SharpZipLib? I believe you can build zip files with classes in the |
||
|
|
