Ftpsetcurrentdir()
Sets the current remote directory
Usage
BOOLEAN = Ftpsetcurrentdir(
ftpdata,
directory,
stoponerror
)
Argument | Summary |
---|---|
ftpdata | the connection object as defined from FtpOpen() |
directory | the directory to set the remote server to |
stoponerror | if something goes wrong, throw an exception. defaults to true [optional] |
Calling
Supports named-parameter calling allowing you to use the function like:
Ftpsetcurrentdir( ftpdata=?, directory=?, stoponerror=? );
Supports passing parameters as a structure using ArgumentCollection:
Ftpsetcurrentdir( ArgumentCollection={ ftpdata : ?, directory : ?, stoponerror : ? } );