|
Summary
Contains the current working directory on the server.
Description
The CurrentDir property is used to get the complete path of the current working directory on the FTP server. A variable must be assigned to save the value of this property and must be updated
each time after changing the current directory. The value can only be accessed while the connection is open.
This property is usually read once after establishing a connection and every time after changing the remote working directory. An application could, for example, update the current directory display
in a text control after every directory operation.
This property can only be read at run time while a connection is open. There is no default value for this property.
Example
Dim Path As String FTPClient.Action = ACTION_CONNECT Path = FTPClient.CurrentDir
|