Discuss this help topic in SecureBlackbox Forum

TElBZip2Reader.Extract

TElBZip2Reader     See also     


Filter: C#  VB.NET  Pascal  C++  PHP  Java  


Extracts data from the archive.

Declaration

[C#]
    void Extract(string OutputFile);
    void Extract(System.IO.Stream Stream);

[VB.NET]
    Sub Extract(ByVal OutputFile As String)
    Sub Extract(ByVal Stream As System.IO.Stream)

[Pascal]
    procedure Extract(const OutputFile : string = ''); overload;
    procedure Extract(Stream : TStream); overload;

[C++]
    void Extract(const std::string &OutputFile);
    void Extract(TStream &Stream);
    void Extract(TStream *Stream);

[PHP]
    void Extract(string $OutputFile)
    void Extract(TStream $Stream)

[Java]
    void extract(String OutputFile);
    void extract(TElStream Stream);

Parameters

  • Stream - stream to store the extracted data.
  • OutputFile - the name of the file to save extracted data to.

Description

Use this method to extract data from the archive.
Note, that OutputPath should exist before extraction, and be accessible for writing.

See also:     OnProgress     OnExtractionStreamNeeded    

Discuss this help topic in SecureBlackbox Forum