Back to product page

SftpUploadFile event


Fires when SFTP user wants to upload file.

Syntax

  • Basic
Private Sub object_SftpUploadFile(User, RelativePath, ResolvedPath, Action)  
The SftpUploadFile(object,User,RelativePath,ResolvedPath,Action) syntax has these parts:
objectA wodSSHD object
UserA SSHUser object. Reference to user who wants to upload file.
RelativePathA String value. Relative path of the file, as seen by the user.
ResolvedPathA String value. Full path to the file on local system.
ActionA 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.

Remarks

The settings for Action are:

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


This event is fired when user wants to upload a file. You may deny such action, for example, if user is not uploading to 'upload' folder. You should do so by setting Action = Deny.

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

Platforms

Windows