Description
-
Fires when SFTP user wants to delete file.
Syntax
-
Private Sub
object_SftpDeleteFile(User,
RelativePath, ResolvedPath,
Action)
The SftpDeleteFile Event syntax has these parts:
| object |
A wodSSHD object. |
| User |
A SSHUser object. Reference
to user who wants to delete 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:
 |
Deny |
0 |
Deny execution of the
action. |
 |
Allow |
1 |
Allow to execute
action. |
Remarks
-
This event is fired when user tries to delete some file
on your system. You can set Action
= Deny if you do not wish this action to be
performed, and error will be generated and sent to the
user.
|