UnZip method

  • Thread starter Thread starter Bob Achgill
  • Start date Start date
B

Bob Achgill

I want to let the users of my Windows form press a button
to download (from the Internet) and unpack a revised form
and supporting data files.

It looks like myWebClient.DownloadFile under class
system.net is a easy way to get the zip file to the
client.

But how can I unzip the file?

I found some pricey solutions for adding .net zip
function from xceed and Chilkat Software. But is there
anything free out there that will do a simple unzip?
 
* "Bob Achgill said:
I want to let the users of my Windows form press a button
to download (from the Internet) and unpack a revised form
and supporting data files.

It looks like myWebClient.DownloadFile under class
system.net is a easy way to get the zip file to the
client.

But how can I unzip the file?

<URL:http://www.icsharpcode.net/OpenSource/SharpZipLib/>

The VB.NET Resource Kit contains zipping functionality too:

<URL:http://msdn.microsoft.com/vbasic/vbrkit/>

It contains ComponentOne Zip for .NET:

<URL:http://www.componentone.com/products.aspx?ProductCode=1&ProductID=26>

Using J#'s zip functionality:

<URL:http://msdn.microsoft.com/msdnmag/issues/03/06/zipcompression/print.asp>
 
Back
Top