|
|||||
|
||||||
Other Library Functions |
function |
FTPConnectionGetWorkingDir |
Library: Net, FTP support (OMFTP)
Include: omftp.xin |
Return type: String Returns: The current working directory. |
define external stream function FTPConnectionGetWorkingDir value FTPConnection this-FTPConnection
This function returns the full path of the current working directory on the FTP server.
Argument:
To use this function, you must include the following line near the start of your program:
include "omftp.xin"
Example:
; list the full current directory output "Current directory is " || FTPConnectionGetWorkingDir MyCon || "%n"