'Declaration Public Overloads Shared Sub Ungzip( _ ByVal gzipFileName As String, _ ByVal destinationFolder As String, _ ByVal replaceExistingFiles As Boolean, _ ByVal fileToUngzip As String _ )
'Usage Dim gzipFileName As String Dim destinationFolder As String Dim replaceExistingFiles As Boolean Dim fileToUngzip As String QuickGZip.Ungzip(gzipFileName, destinationFolder, replaceExistingFiles, fileToUngzip)
public static void Ungzip( string gzipFileName, string destinationFolder, bool replaceExistingFiles, string fileToUngzip )
Parameters
- gzipFileName
- The full path of the source GZip file.
- destinationFolder
- The full path of the folder into which the uncompressed file will be placed
- replaceExistingFiles
- Boolean value indicating whether existing items in the destination should be replaced.
- fileToUngzip
- The path of the file to uncompress from the GZip file.