Creating Zip Files

Is there access in VB2005 that allows creation of compressed (Zip) files, or at least has access to the windows-based utility that puts files into a compressed folder?
[167 byte] By [OpticTygre] at [2008-1-27]
# 1
Nothing that ships with the .NET Framework, but you can download and use SharpZipLib for free.

http://www.icsharpcode.net/OpenSource/SharpZipLib/Default.aspx

JamesKovacs at 2007-8-21 > top of Msdn Tech,Visual Basic,Visual Basic Language...
# 2
There is a new System.IO.Compression.GZipStream that handles zipped streams, however this does not handle zip files and entries so you will have to write your own code around it.

I have used the SharpZipLib that James suggested and it works well.

DavidM.Kean at 2007-8-21 > top of Msdn Tech,Visual Basic,Visual Basic Language...
# 3
I have used it as well with great success. ;)
JBrown9264 at 2007-8-21 > top of Msdn Tech,Visual Basic,Visual Basic Language...
# 4

Can you post the wrapper you have for unzipping files.

Thanks,
Phil

PhillipPutzback at 2007-8-21 > top of Msdn Tech,Visual Basic,Visual Basic Language...
# 5
You can download one from here: http://www.icsharpcode.net/OpenSource/SharpZipLib/Default.aspx.
DavidM.Kean at 2007-8-21 > top of Msdn Tech,Visual Basic,Visual Basic Language...