[]
Asynchronous extracts a file from the current zip file.
public Task ExtractAsync(int index, string destFileName)
| Type | Name | Description |
|---|---|---|
| int | index | Index of the entry to extract. |
| string | destFileName | Name and location of the extracted file. |
| Type | Description |
|---|---|
| Task |
Asynchronous extracts a file from the current zip file.
public Task ExtractAsync(string entryName, string destFileName)
| Type | Name | Description |
|---|---|---|
| string | entryName | Name of the entry to extract. |
| string | destFileName | Name and location of the extracted file. |
| Type | Description |
|---|---|
| Task |
To read from the zip archive use ExtractAsync(filePath) and ExtractAsync(stream):
Asynchronous extracts a file from the current zip file.
public Task ExtractAsync(int index)
| Type | Name | Description |
|---|---|---|
| int | index | Index of the entry to extract. |
| Type | Description |
|---|---|
| Task |
The entry is extracted to a file in the same folder as the current zip file, with the same name as the entry.
Asynchronous extracts a file from the current zip file.
public Task ExtractAsync(string entryName)
| Type | Name | Description |
|---|---|---|
| string | entryName | Name of the entry to extract. |
| Type | Description |
|---|---|
| Task |
The entry is extracted to a file in the same folder as the current zip file, with the same name as the entry.