Table of Contents

TZippyReader.ExtractFile Method

Overloads

TZippyReader.ExtractFile(String, String)

Extracts a file from the zip file into the disk.

Syntax

Namespace: FlexCel.Core

public void ExtractFile(String aFileName, String aNameOnDisk)

Parameters

<-> Parameter Type Description
aFileName String Name of the file on the zip file. See description and remarks at FileExists.
aNameOnDisk String Name of the extracted file on the disk.

See also

TZippyReader.ExtractFile(Int32, String)

Extracts a file from the zip file into the disk.

Syntax

Namespace: FlexCel.Core

public void ExtractFile(Int32 Index, String aNameOnDisk)

Parameters

<-> Parameter Type Description
Index Int32 Index (0 based) of the file. Must be between 0 and FileCount - 1.
aNameOnDisk String Name of the extracted file on the disk.

See also