Detailed specification of a problem that occured during the operation.

Namespace:  Rebex.IO.Compression
Assembly:  Rebex.Zip (in Rebex.Zip.dll) Version: 1.0.4086.0

Syntax

C#
public enum ArchiveProblemType
Visual Basic (Declaration)
Public Enumeration ArchiveProblemType
Visual C++
public enum class ArchiveProblemType

Members

Member nameDescription
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).
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).
InternalError
Internal error.

See Also