|
||||||||||
|
|
||||||||||
| Related Concepts | Other Library Functions | |||||||||
| function | FTPConnectionChangeDir |
Available in:
Professional Enterprise |
|
Library: omftp - FTP support
Include: omftp.xin |
define external function FTPConnectionChangeDir
value FTPConnection this-FTPConnection
dir value stream dir
This function is used to change directories on the FTP server.
To use this function, you must include the following line near the start of your program:
include "omftp.xin"
Arguments:
Example:
; change to a directory named "wa" and list the contents
include "omftp.xin"
process
FTPConnectionChangeDir MyCon dir "wa"
output FTPConnectionListDir MyCon
| ---- |