Description
-
Fires when user wants to delete file.
Syntax
-
Private Sub
object_DeleteFile(User,
RelativePath, ResolvedPath,
Action)
The DeleteFile Event syntax has these parts:
| object |
A wodFTPD object. |
| User |
A FtpUser object. Reference
to use who is deleting the file. |
|
RelativePath |
A String value. Path
to the file as seen by the user. |
|
ResolvedPath |
A String value. Full
path to the file on local system. |
| Action |
A FtpActions
enumeration, as described in settings. When set to
Deny/SilentDeny, wodFTPServer denies
this action. |
Settings
-
The settings for Action are:
 |
Deny |
0 |
Deny execution of the
action. |
 |
Allow |
1 |
Allow to execute
action. |
 |
SilentDeny |
2 |
Silently deny execution of
the action. |
 |
SilentAllow |
3 |
Silently allow to execute
action. |
Remarks
-
DeleteFile event is fired when user wants to delete some
file on the server. Before it's actually deleted, you
can set Action = Deny to
prevent file deletion, or you can change ResolvedPath argument to something else, and
point to completely different file to be deleted.
|