System.Zip.TZipFile.ExtractZipFile

Aus RAD Studio API Documentation
Wechseln zu: Navigation, Suche

Delphi

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

C++

static void __fastcall ExtractZipFile(const System::UnicodeString ZipFileName, const System::UnicodeString Path, TZipProgressEvent ZipProgress = 0x0)/* overload */;
static void __fastcall ExtractZipFile(const System::UnicodeString ZipFileName, const System::UnicodeString Path, System::Sysutils::TEncoding* const Encoding, TZipProgressEvent ZipProgress = 0x0)/* overload */;

Eigenschaften

Typ Sichtbarkeit Quelle Unit Übergeordnet
procedure
function
public
System.Zip.pas
System.Zip.hpp
System.Zip TZipFile


Beschreibung

Klassenprozedur, die den Inhalt einer ZIP-Datei in ein angegebenes Verzeichnis auf dem Datenträger extrahiert.

  • ZipFileName ist der Name der ZIP-Datei.
  • Path repräsentiert das Verzeichnis auf dem Datenträger, in das der Inhalt der ZIP-Datei extrahiert wird.
  • ZipProgress ist eine optionale Callback-Methode, die den Fortschritt der Operation verfolgt.

Siehe auch