Detailed specification of a problem that occurred during the multi-file transfer.
Namespace:
Rebex.Net
Assembly:
Rebex.Sftp (in Rebex.Sftp.dll)
Syntax
Visual Basic |
---|
Public Enumeration SftpBatchTransferProblemType |
C# |
---|
public enum SftpBatchTransferProblemType |
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.
| |
CannotTransferFile |
Cannot transfer file.
| |
CannotReadFromDirectory |
Cannot read from a directory.
| |
CannotFindFile |
Cannot find the file which was found while retrieving file system hierarchy earlier.
| |
FileNameIsInvalidOnTargetFileSystem |
Name of the file is invalid on the target file system.
For example, backslash is a valid filename character on Unix SFTP servers, but invalid in local Windows file system.
| |
DirectoryNameIsInvalidOnTargetFileSystem |
Name of the directory is invalid on the target file system.
For example, backslash is a valid directory name character on Unix SFTP servers, but invalid in local Windows file system.
| |
CannotFindDirectory |
Cannot find the directory which was found while retrieving file system hierarchy earlier.
| |
CannotFindLink |
Cannot find the link which was found while retrieving file system 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.
| |
CannotDeleteFile |
Cannot delete the file.
| |
CannotDeleteDirectory |
Cannot delete the directory.
|