Ftpexistsdir()

Checks to see if the remote directory exists

Usage

BOOLEAN = Ftpexistsdir( ftpdata, directory, passive, stoponerror )
Argument Summary
ftpdata the connection object as defined from FtpOpen()
directory the remote directory to check
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:

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

Supports passing parameters as a structure using ArgumentCollection:

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