Ftpremove()

Removes the file on the remote server

Usage

BOOLEAN = Ftpremove( ftpdata, file, stoponerror )
Argument Summary
ftpdata the connection object as defined from FtpOpen()
file the remote file to remove
stoponerror if something goes wrong, throw an exception. defaults to true [optional]

Calling

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

Ftpremove(
   ftpdata=?, 
   file=?, 
   stoponerror=?
);

Supports passing parameters as a structure using ArgumentCollection:

Ftpremove( ArgumentCollection={
   ftpdata : ?, 
   file : ?, 
   stoponerror : ?
} );