System.Zip.TZipFile.ExtractZipFile

提供: RAD Studio API Documentation
移動先: 案内検索

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 */;

プロパティ

種類 可視性 ソース ユニット
procedure
function
public
System.Zip.pas
System.Zip.hpp
System.Zip TZipFile


説明

ディスク上の指定された場所にある .zip ファイルのコンテンツを抽出する、クラス プロシージャ。

  • ZipFileName は、.zip ファイルの名前。
  • Path は、.zip ファイルのコンテンツを抽出するディスクの場所を表します。
  • ZipProgress は、オペレーションの進捗を追跡する、任意のコールバック メソッドです。

関連項目