ArchiveEntry.Extract
Contents
[
Hide
]Extract(string, string)
Extracts the entry to the filesystem by the path provided.
public FileInfo Extract(string path, string password = null)
Parameter | Type | Description |
---|---|---|
path | String | The path to destination file. If the file already exists, it will be overwritten. |
password | String | Optional password for decryption. |
Return Value
The file info of composed file.
Exceptions
exception | condition |
---|---|
ArgumentNullException | path is null. |
SecurityException | The caller does not have the required permission to access. |
ArgumentException | The path is empty, contains only white spaces, or contains invalid characters. |
UnauthorizedAccessException | Access to file path is denied. |
PathTooLongException | The specified path, file name, or both exceed the system-defined maximum length. For example, on Windows-based platforms, paths must be less than 248 characters, and file names must be less than 260 characters. |
NotSupportedException | File at path contains a colon (:) in the middle of the string. |
FileNotFoundException | The file is not found. |
DirectoryNotFoundException | The specified path is invalid, such as being on an unmapped drive. |
IOException | The file is already open. |
InvalidDataException | Data is corrupted. -or- CRC or MAC verification failed for the entry. |
Examples
Extract two entries of zip archive, each with own password
using (FileStream zipFile = File.Open("archive.zip", FileMode.Open))
{
using (Archive archive = new Archive(zipFile))
{
archive.Entries[0].Extract("first.bin", "first_pass");
archive.Entries[1].Extract("second.bin", "second_pass");
}
}
See Also
- class ArchiveEntry
- namespace Aspose.Zip
- assembly Aspose.Zip
Extract(Stream, string)
Extracts the entry to the stream provided.
public void Extract(Stream destination, string password = null)
Parameter | Type | Description |
---|---|---|
destination | Stream | Destination stream. Must be writable. |
password | String | Optional password for decryption. |
Exceptions
exception | condition |
---|---|
InvalidDataException | Data is corrupted. -or- CRC or MAC verification failed for the entry. |
IOException | Source is corrupted or not readable. |
ArgumentException | destination does not support writing. |
Examples
Extract an entry of zip archive with password.
using (FileStream zipFile = File.Open("archive.zip", FileMode.Open))
{
using (Archive archive = new Archive(zipFile))
{
archive.Entries[0].Extract(httpResponseStream, "p@s$");
}
}
See Also
- class ArchiveEntry
- namespace Aspose.Zip
- assembly Aspose.Zip