Ftpcmd()

Send a specific command to the ftp server

Usage

STRING = Ftpcmd( ftpdata, cmd, stoponerror )
Argument Summary
ftpdata the connection object as defined from FtpOpen()
cmd the command to send
stoponerror if something goes wrong, throw an exception. defaults to true [optional]

Calling

Supports named-parameter calling allowing you to use the function like:

Ftpcmd(
   ftpdata=?, 
   cmd=?, 
   stoponerror=?
);

Supports passing parameters as a structure using ArgumentCollection:

Ftpcmd( ArgumentCollection={
   ftpdata : ?, 
   cmd : ?, 
   stoponerror : ?
} );