![]() ![]() ![]() ![]() ![]() ![]() ![]() |
|||||
|
|
|||||
| function | FTPConnectionOpen | ||||
| Related Concepts | Other Library Functions |
|
Library: FTP
Include: omftp.xin |
Returns: Opaque
FTP connection opaque type object. |
define external FTPConnection function FTPConnectionOpen
server value stream server
user value stream username optional initial {anonymous}
password value stream password optional intial {anon@anonymous}
account value stream account optional initial {""}
This function establishes a connection with an FTP server, and returns an FTP connection opaque type object.
Arguments:
Example:
; open a connection and check for errors
set MyCon to FTPConnectionOpen server "foo"
user "bar"
password "baz"
| ---- |