wodSSHServer ActiveX Control - SftpDownloadFile Event
    
 

Description

Fires when SFTP user wants to download file.


Syntax

Private Sub object_SftpDownloadFile(User, RelativePath, ResolvedPath, Action)



The SftpDownloadFile Event syntax has these parts:

Part Description
object A wodSSHD object.
User A SSHUser object. Reference to user who wants to download file.
RelativePath A String value. Relative path of the file, as seen by the user.
ResolvedPath A String value. Full path to the file on local system.
Action A SSHActions enumeration, as described in settings. You should set to Allow to allow this action, or to Deny if you don't want to allow it.

Settings

The settings for Action are:

Constant Value Description
 Deny 0 Deny execution of the action.
 Allow 1 Allow to execute action.

Remarks

This event is fired before used starts downloading file pointed by RelativePath variable. You can disable file download by specifying Action = Deny.

 

This event can also fire if ServiceType was stSCP - when client performs SCP download.