System.Zip.TZipFile.ExtractZipFile

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

class procedure ExtractZipFile(const ZipFileName: string; const Path: string; ZipProgress: TZipProgressEvent = nil); static;

C++

static void __fastcall ExtractZipFile(const System::UnicodeString ZipFileName, const System::UnicodeString Path, TZipProgressEvent ZipProgress = 0x0);

Properties

Type Visibility Source Unit Parent
procedure
function
public
System.Zip.pas
System.Zip.hpp
System.Zip TZipFile

Description

Class procedure that extracts the contents of a .zip file at a specified location on disk.

  • ZipFileName is the name of the .zip file.
  • Path represents the disk location where the contents of the .zip file will be extracted.
  • ZipProgress is an optional callback method that tracks the progress of the operation.

See Also