[]
Extracts a file from the current zip file.
public void Extract(int index, string destFileName)
| Type | Name | Description |
|---|---|---|
| int | index | Index of the entry to extract. |
| string | destFileName | Name and location of the extracted file. |
Extracts a file from the current zip file.
public void Extract(string entryName, string destFileName)
| Type | Name | Description |
|---|---|---|
| string | entryName | Name of the entry to extract. |
| string | destFileName | Name and location of the extracted file. |
Extracts a file from the current zip file.
public void Extract(int index)
| Type | Name | Description |
|---|---|---|
| int | index | Index of the entry to extract. |
The entry is extracted to a file in the same folder as the current zip file, with the same name as the entry.
Extracts a file from the current zip file.
public void Extract(string entryName)
| Type | Name | Description |
|---|---|---|
| string | entryName | Name of the entry to extract. |
The entry is extracted to a file in the same folder as the current zip file, with the same name as the entry.