LitDev Extension API
LDftp
ftp Methods.
Delete | DoAssync | Download |
FTPComplete | LastFTPFile | LastFTPStatus |
ListFiles | Upload | UseBinary |
Delete(remoteFile,ftpServerIP,ftpUserID,ftpPassword)
Delete a file by ftp.
remoteFile The full path (on server) to the remote file to delete.
ftpServerIP The ftp server address (or IP).
ftpUserID The user ID.
ftpPassword The user password.
returns "SUCCESS", "FAILED" or "PENDING" for async.
DoAssync
Set or get whether ftp transfers are performed asynchronously ("True" or "False" default).
An asynchronous ftp transfer will return immediately and complete in the background.
The event FTPComplete will be called when the tranfer is finished.
Download(localFile,remoteFile,ftpServerIP,ftpUserID,ftpPassword)
Download a file by ftp.
localFile The full path to the local file to download.
remoteFile The full path (on server) to the remote file to download.
ftpServerIP The ftp server address (or IP).
ftpUserID The user ID.
ftpPassword The user password.
returns "SUCCESS", "FAILED" or "PENDING" for async.
FTPComplete
Event when an asynchronous ftp transfer completes.
LastFTPFile
The last asynchronous FTP file transfered.
LastFTPStatus
The last asynchronous FTP file status ("SUCCESS" or "FAILED")
ListFiles(remoteFolder,ftpServerIP,ftpUserID,ftpPassword)
Get a remote folder listing by ftp (non async only).
remoteFolder The full path (on server) to the remote folder to list.
ftpServerIP The ftp server address (or IP).
ftpUserID The user ID.
ftpPassword The user password.
returns An array of file and folder names or "FAILED". The array is indexed by the file name and the value contains additional information.
Upload(localFile,remoteFile,ftpServerIP,ftpUserID,ftpPassword)
Upload a file by ftp.
localFile The full path to the local file to upload.
remoteFile The full path (on server) to the remote file to upload.
ftpServerIP The ftp server address (or IP).
ftpUserID The user ID.
ftpPassword The user password.
returns "SUCCESS", "FAILED" or "PENDING" for async.
UseBinary
Set or get whether ftp transfers use binary (default) or ascii. ("True" or "False").