Detailed specification of a problem that occurred during the operation.
Namespace:
Rebex.IO.Compression
Assembly:
Rebex.Zip (in Rebex.Zip.dll)
Syntax
Visual Basic |
---|
Public Enumeration ArchiveProblemType |
C# |
---|
public enum ArchiveProblemType |
Members
Member name | Description | |
---|---|---|
![]() | FileExists |
A target file with the same name already exists.
|
![]() | LinkDetected |
A symbolic link was detected.
|
![]() | InfiniteLoopDetected |
Symbolic link is probably a part of an infinite loop in the file system hierarchy.
|
![]() | CannotCreateDirectory |
Cannot create target directory.
|
![]() | CannotProcessFile |
Cannot add or extract file.
|
![]() | CannotReadFromDirectory |
Cannot read from a directory.
|
![]() | CannotFindFile |
Cannot find the file which was found while retrieving hierarchy earlier.
|
![]() | 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.
|
![]() | 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.
|
![]() | CannotFindDirectory |
Cannot find the directory which was found while retrieving hierarchy earlier.
|
![]() | CannotFindLink |
Cannot find the link which was found while retrieving hierarchy earlier.
|
![]() | CannotResolveLink |
Link is corrupted or its target cannot be found.
|
![]() | NotFileOrDirectory |
Currently processed item is neither a file nor a directory.
|
![]() | OperationCanceled |
Operation was canceled.
|
![]() | UnsupportedFeature |
Feature not supported (eg. compression method, archive format, archive version).
|
![]() | CannotDeleteFile |
Cannot delete the file.
|
![]() | CannotDeleteDirectory |
Cannot delete the directory.
|
![]() | OperationFailure |
Operation failed.
|
![]() | AnotherOperationPending |
Another operation is pending.
|
![]() | CorruptedArchive |
Not a ZIP archive or structure of the archive is corrupted.
|
![]() | CrcCheckFailed |
CRC check failed.
|
![]() | ItemNotFound |
Item on specified path was not found.
|
![]() | InvalidPath |
Specified path is invalid (or used in wrong context).
|
![]() | CannotDeleteNotEmptyDirectory |
Cannot delete directory because it is not empty.
|
![]() | CannotOpenArchiveForWriting |
Archive cannot be opened for writing.
|
![]() | IncorrectPasswordOrCorruptedData |
Specified password is incorrect or encrypted data is corrupted (or no password was specified).
|
![]() | PasswordInconsistence |
Specified password cannot be encoded using the ZipArchive.Options.PasswordEncoding.
|
![]() | InternalError |
Internal error.
|
![]() | DemoExpired |
Trial version of Rebex ZIP for .NET has expired.
|