Ftplist()

Lists the directory

Usage

QUERY = Ftplist( ftpdata, directory, passive, stoponerror )
Argument Summary
ftpdata the connection object as defined from FtpOpen()
directory the remote directory to list
passive flag to determine if the transfer is in passive mode or not [optional]
stoponerror if something goes wrong, throw an exception. defaults to true [optional]

Calling

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

Ftplist(
   ftpdata=?, 
   directory=?, 
   passive=?, 
   stoponerror=?
);

Supports passing parameters as a structure using ArgumentCollection:

Ftplist( ArgumentCollection={
   ftpdata : ?, 
   directory : ?, 
   passive : ?, 
   stoponerror : ?
} );