[VB.NET]
Event OnSFTPRequestAbsolutePath As TElSFTPServerRequestAbsolutePathEvent
Delegate Sub TElSFTPServerRequestAbsolutePathEvent(ByVal Sender As Object, ByVal Path As String, ByRef AbsolutePath As String, ByVal Control As TSBSftpRealpathControl, ByVal ComposePath As TElStringList, ByRef ErrorCode As Integer, ByRef Comment As String)
The server will not fail the request if the path does not exist,
is hidden, or the user does not have access to the path or some component thereof.
However, the path may not be completely resolved to it's component form.
For example, symlinks may not be followed in this case.
The server may fail the request if the path is not syntactically valid, or for other reasons
rcStatIf = 1
rcStatIf
The server will stat the path if it exists and is accessible to the client.
However, if the path does not exist, isn't visible, or isn't accessible,
the server will not fail the request. If the stat failed, the file
type will be SSH_FILEXFER_TYPE_UNKNOWN
rcStatAlways = 2
rcStatAlways
The server will stat the path.
If the stat operation fails, the server will fail the request