|
||||||||||
|
|
||||||||||
| Related Concepts | Other Library Functions | |||||||||
| function | FTPConnectionMakeDir |
Available in:
Professional Enterprise |
|
Library: omftp - FTP support
Include: omftp.xin |
define external function FTPConnectionMakeDir
value FTPConnection this-FTPConnection
dir value stream dir
This function will create a new directory on the FTP server.
Arguments:
To use this function, you must include the following line at the beginning of your program:
include "omftp.xin"
Example:
; make a dir and do a list FTPConnectionMakeDir MyCon dir "test-dir" output FTPConnectionListDir MyCon full true
| ---- |