ArchiveProblemType Enum
Namespace: Rebex.IO.Compression
Assembly: Rebex.Zip.dll (version 7.0.9448)
Detailed specification of a problem that occurred during the operation.
Syntax
public enum ArchiveProblemType
Fields
| Name | Description |
|---|---|
| AnotherOperationPending | Another operation is pending. |
| CannotCreateDirectory | Cannot create target directory. |
| CannotDeleteDirectory | Cannot delete the directory. |
| CannotDeleteFile | Cannot delete the file. |
| CannotDeleteNotEmptyDirectory | Cannot delete directory because it is not empty. |
| CannotFindDirectory | Cannot find the directory which was found while retrieving hierarchy earlier. |
| CannotFindFile | Cannot find the file which was found while retrieving hierarchy earlier. |
| CannotFindLink | Cannot find the link which was found while retrieving hierarchy earlier. |
| CannotOpenArchiveForWriting | Archive cannot be opened for writing. |
| CannotProcessFile | Cannot add or extract file. |
| CannotReadFromDirectory | Cannot read from a directory. |
| CannotResolveLink | Link is corrupted or its target cannot be found. |
| CorruptedArchive | Not a ZIP archive or structure of the archive is corrupted. |
| CrcCheckFailed | CRC check failed. |
| DirectoryNameIsInvalid | Name of the directory is invalid on the target file system. For example, colon is a valid filename character on Unix file systems, but invalid in local Windows file system. |
| FileExists | A target file with the same name already exists. |
| FileNameIsInvalid | Name of the file is invalid on the target file system. For example, colon is a valid filename character on Unix file systems, but invalid in local Windows file system. |
| IncorrectPasswordOrCorruptedData | Specified password is incorrect or encrypted data is corrupted (or no password was specified). |
| InfiniteLoopDetected | Symbolic link is probably a part of an infinite loop in the file system hierarchy. |
| InternalError | Internal error. |
| InvalidPath | Specified path is invalid (or used in wrong context). |
| ItemNotFound | Item on specified path was not found. |
| LinkDetected | A symbolic link was detected. |
| NotFileOrDirectory | Currently processed item is neither a file nor a directory. |
| OperationCanceled | Operation was canceled. |
| OperationFailure | Operation failed. |
| PasswordInconsistence | Specified password cannot be encoded using the ZipArchive.Options.PasswordEncoding. |
| UnsupportedFeature | Feature not supported (eg. compression method, archive format, archive version). |