'Declaration Public Overloads Shared Sub Unzip( _ ByVal zipFileName As String, _ ByVal destinationFolder As String, _ ByVal ParamArray filesToUnzip() As String _ )
'Usage Dim zipFileName As String Dim destinationFolder As String Dim filesToUnzip() As String QuickZip.Unzip(zipFileName, destinationFolder, filesToUnzip)
public static void Unzip( string zipFileName, string destinationFolder, params string[] filesToUnzip )
Parameters
- zipFileName
- The fully-qualified path and name of the zip file.
- destinationFolder
- The destination folder to where the files will be extracted.
- filesToUnzip
- The files to extract from zipFileName. Cannot be a null reference (Nothing in Visual Basic).