[]
        
(Showing Draft Content)

C1.Zip.C1ZipEntryCollection.Extract

Extract Method

Extract(int, string)

Extracts a file from the current zip file.

Declaration
public void Extract(int index, string destFileName)
Parameters
Type Name Description
int index

Index of the entry to extract.

string destFileName

Name and location of the extracted file.

Extract(string, string)

Extracts a file from the current zip file.

Declaration
public void Extract(string entryName, string destFileName)
Parameters
Type Name Description
string entryName

Name of the entry to extract.

string destFileName

Name and location of the extracted file.

Extract(int)

Extracts a file from the current zip file.

Declaration
public void Extract(int index)
Parameters
Type Name Description
int index

Index of the entry to extract.

Remarks

The entry is extracted to a file in the same folder as the current zip file, with the same name as the entry.

Extract(string)

Extracts a file from the current zip file.

Declaration
public void Extract(string entryName)
Parameters
Type Name Description
string entryName

Name of the entry to extract.

Remarks

The entry is extracted to a file in the same folder as the current zip file, with the same name as the entry.