Specifies actions taken on symlinks.
public enum SymlinksResolveAction
Public Enum SymlinksResolveAction
public enum class SymlinksResolveAction
Name | Description |
---|
Follow | Resolve and follow the symlink. Following a link may lead to recursive link problem.
When the component detects recursive links a FileSystemException with RecursiveLinkDetected status is raised. |
FollowAndIgnoreRecursiveSymlinks | Resolve and follow the symlink. Recursive links are to be ignored. |
Skip | Skip the symlink - the default behavior for the multi-file transfer operation. |
Confirm | Raise the TransferConfirm event to confirm next action on the symlink. |
Top