IZipFile.ExtractZip Method

Extracts a zipped archive (e.g. an estimate qdv file).
Sub ExtractZip( _ 
ByVal zipArchive As String, _ 
ByVal destinationPath As String, _ 
Optional ByVal filePattern As String = "*.*", _ 
Optional ByVal password As String = "", _ 
Optional ByVal extractMultipleFiles As Boolean = False _ 
)
This language is not supported or no code example is available.
void ExtractZip( 
string zipArchive
string destinationPath
string filePattern = "*.*", 
string password = "", 
bool extractMultipleFiles = False 
)
This language is not supported or no code example is available.

Parameters

zipArchive
string

Required. The full path to the ZIP archive that is to be extracted.

destinationPath
string

Required. The full filename of the extracted file or the path to the directory in which to place the extracted multiple files.

filePattern
string

Optional. The file name pattern that specifies which file or files are to be extracted. The default value is "*.*".

password
string

Optional. When the ZIP archive is protected, the password can be specified. Else, if an empty string, a prompt for the password will be displayed inside this function.

extractMultipleFiles
bool

Optional. If set to true, the method will extract all files matching the pattern. The default value is false.

Version
 
Available since QDV 7.15.546.

.NET Framework

Supported in: 4.8, 4.7, 4.6, 4.5.2

In this article

Definition