ZipArchive.ExtractAll Method
Namespace: Rebex.IO.Compression
Assembly: Rebex.Zip.dll (version 7.0.9147)
ExtractAll(String)
Extracts the whole content of the ZIP archive into the specified local directory.
Declaration
public ArchiveOperationResult ExtractAll(string targetDirectoryPath)
Parameters
Type | Name | Description |
---|---|---|
String | targetDirectoryPath | Path to an existing local directory to which to extract the ZIP archive. |
Returns
Type | Description |
---|---|
Archive |
Operation result. |
Exceptions
Type | Condition |
---|---|
Argument |
The specified path is null. |
Argument |
The specified path is empty or contains invalid characters. -or- The system could not retrieve the absolute path. |
Object |
Archive was already disposed. |
Not |
Path is in an invalid format. |
Path |
|
Security |
The caller does not have the required permissions. |
Unauthorized |
Access to the file is denied. |
IOException | An I/O error occurred. |
Zip |
Cannot perform the requested operation, or the operation was canceled
(see Problem |
ExtractAll(String, ActionOnExistingFiles)
Extracts the whole content of the ZIP archive into the specified local directory.
Declaration
public ArchiveOperationResult ExtractAll(string targetDirectoryPath, ActionOnExistingFiles defaultActionOnExistingFiles)
Parameters
Type | Name | Description |
---|---|---|
String | targetDirectoryPath | Path to an existing local directory to which to extract the ZIP archive. |
Action |
defaultActionOnExistingFiles | Specifies the default behavior for files that already exists in the local directory. |
Returns
Type | Description |
---|---|
Archive |
Operation result. |
Exceptions
Type | Condition |
---|---|
Argument |
The specified path is null. |
Argument |
The specified path is empty or contains invalid characters. -or- The system could not retrieve the absolute path. |
Argument |
The |
Object |
Archive was already disposed. |
Not |
Path is in an invalid format. |
Path |
|
Security |
The caller does not have the required permissions. |
Unauthorized |
Access to the file is denied. |
IOException | An I/O error occurred. |
Zip |
Cannot perform the requested operation, or the operation was canceled
(see Problem |
ExtractAll(String, TransferMethod, ActionOnExistingFiles)
Extracts the whole content of the ZIP archive into the specified local directory.
Declaration
public ArchiveOperationResult ExtractAll(string targetDirectoryPath, TransferMethod transferMethod, ActionOnExistingFiles defaultActionOnExistingFiles)
Parameters
Type | Name | Description |
---|---|---|
String | targetDirectoryPath | Path to an existing local directory to which to extract the ZIP archive. |
Transfer |
transferMethod | Specifies whether to copy or move source items. |
Action |
defaultActionOnExistingFiles | Specifies the default behavior for files that already exists in the local directory. |
Returns
Type | Description |
---|---|
Archive |
Operation result. |
Exceptions
Type | Condition |
---|---|
Argument |
The specified path is null. |
Argument |
The specified path is empty or contains invalid characters. -or- The system could not retrieve the absolute path. |
Argument |
The |
Object |
Archive was already disposed. |
Not |
Path is in an invalid format. |
Path |
|
Security |
The caller does not have the required permissions. |
Unauthorized |
Access to the file is denied. |
IOException | An I/O error occurred. |
Zip |
Cannot perform the requested operation, or the operation was canceled
(see Problem |
ExtractAll(String, String)
Extracts the whole content of the specified ZIP archive into the specified local directory.
Declaration
public static ArchiveOperationResult ExtractAll(string zipFilePath, string targetDirectoryPath)
Parameters
Type | Name | Description |
---|---|---|
String | zipFilePath | Path to a ZIP archive file. |
String | targetDirectoryPath | Path to an existing local directory to which to extract the ZIP archive. |
Returns
Type | Description |
---|---|
Archive |
Operation result. |
ExtractAll(String, String, TransferMethod, ActionOnExistingFiles)
Extracts the whole content of the specified ZIP archive into the specified local directory.
Declaration
public static ArchiveOperationResult ExtractAll(string zipFilePath, string targetDirectoryPath, TransferMethod transferMethod, ActionOnExistingFiles defaultActionOnExistingFiles)
Parameters
Type | Name | Description |
---|---|---|
String | zipFilePath | Path to a ZIP archive file. |
String | targetDirectoryPath | Path to an existing local directory to which to extract the ZIP archive. |
Transfer |
transferMethod | Specifies whether to copy or move source items. |
Action |
defaultActionOnExistingFiles | Specifies the default behavior for files that already exists in the local directory. |
Returns
Type | Description |
---|---|
Archive |
Operation result. |