type
TScSFTPServerGetFullPathEvent = procedure(Sender: TObject; SFTPSessionInfo: TScSFTPSessionInfo; var Path: string) of object;
property OnGetFullPath: TScSFTPServerGetFullPathEvent;
Description
The OnGetFullPath event occurs when calling the GetFullPath method. OnGetFullPath occurs after the absolute canonical path is resolved. The OnGetFullPath event handler can change this value at its own discretion.
Parameters:
• | Sender - the object whose event handler is called. |
• | SFTPSessionInfo - contains the information about the current SFTP session. |
• | Path - the resolved absolute canonical path. It is a variable parameter and it can be changed. |
See also