wodFTPServer ActiveX Control - ChangeDir Method
      
 

Description

Called when user wants to change directory.


Return Type

None  


Syntax

object.ChangeDir Owner, User, RelativePath, ResolvedPath, Action



The ChangeDir Method syntax has these parts:

Part Description
object An expression evaluating to an object of type wodFTPDNotify.
Owner A wodFTPDCom object. Reference to wodFTPServer instance that called this notification method.
User A FtpUser object. Reference to user who is changing directory.
RelativePath A String value.

Path as seen by the user.

ResolvedPath A String value. Full path to folder on your system.
Action A FtpActions enumeration, as described in settings. When set to Deny/SilentDeny, wodFTPServer denies this action.

Settings

The settings for Action are:

Constant Value Description
 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

NOTE: This method is called only if you implemented IwodFTPDNotify interface in your application, and wodFTPD.Notification property has received reference to instance of your implementation.

ChangeDir notification method is called when client sends 'CWD' or 'CDUP' commands, requesting directory to be changed. At this point you can 'protect' some directories with your code, thus rejecting client's request. However, SFTP protocol internally does not support CWD command and doesn't have alternative for it - so this event will never fire in SFTP protocol mode.