[]
        
(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)
Public Sub Extract(index As Integer, destFileName As String)
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)
Public Sub Extract(entryName As String, destFileName As String)
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)
Public Sub Extract(index As Integer)
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)
Public Sub Extract(entryName As String)
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.