|
||||||||||
|
||||||||||
Related Concepts | Other Library Functions |
function | FTPConnectionDeleteDir |
Available in:
Professional Enterprise |
Library: omftp - FTP support
Include: omftp.xin |
define external function FTPConnectionDeleteDir value FTPConnection this-FTPConnection dir value stream dir
This function will delete a directory from the FTP server.
Arguments:
To use this function, you must include the following line near the start of your program:
include "omftp.xin"
Example:
; delete "test-dir" directory and do a directory listing FTPConnectionDeleteDir MyCon dir "test-dir" output FTPConnectionListDir MyCon full true
---- |