Xceed Zip for COM/ActiveX on x86/x64 Documentation
Example topics
/ Unzipping files (VB.NET example)
In This Topic
Unzipping files (VB.NET example)
In This Topic
VB.NET
Copy Code
Dim zip As New XceedZipLib.XceedZipClass()
zip.License( "your license key" )
' Specify which files will be added to be unzipped. ' Setting this property to an empty string will ' extract all the files from the zip file zip.FilesToProcess = string.Empty
' Specify the name and location of the zip file. zip.ZipFilename = "d:\fonts.zip"
' Specify the location where the files are to be unzipped. zip.UnzipToFolder = "c:\test"
' Unzip the files XceedZipLib.xcdError result = zip.Unzip()