FTP
RushApp.FTP
Variables
RushApp.FTP.Splitter
Declare
property Splitter: string;
Description
Indicates splitter for Names of FTP Server, default splitter is ';'
Example
RushApp.FTP.Splitter := '|';
Functions
RushApp.FTP.CWD
RushApp.FTP.Delete
RushApp.FTP.Login
RushApp.FTP.Logout
RushApp.FTP.Raw
RushApp.FTP.RemoveQueue
RushApp.FTP.Transfer
RushApp.FTP.EnableSite
RushApp.FTP.DisableSite
RushApp.FTP.CWD
Declare
procedure CWD(NameList: string; Param: string; Flag: Integer);
Description
Let all or specifies connected/idle FTP Servers change remote directory.
RushApp.FTP.Delete
Declare
procedure Delete(NameList: string; Path: string; Name: string; Flag: Integer);
Description
Delete folder or file from specifies connected/idle FTP Servers
RushApp.FTP.Login
Declare
procedure Login(NameList: string; Param: string; Flag: Integer);
Description
Connect to one or more FTP Servers and jump to a FTP path or bookmark.
RushApp.FTP.Logout
Declare
procedure Logout(NameList: string; Flag: Integer);
Description
Disconnect from one or more FTP Servers, If Param ANameList is empty string, all idle FTP connections will be disconnected.
RushApp.FTP.RAW
Declare
procedure RAW(NameList: string; Param: string; Flag: Integer);
Description
Send raw command to all or specical connected/idle FTP Servers, if Param ANameList is empty string then send to all connected/idle FTP servers. this function will not send raw command to transfering connections.
RushApp.FTP.RemoveQueue
Declare
procedure RemoveQueue(Source: string; Dest: string; Param: string;
Flag: Integer);
Description
Remove Queue items from Queue window.
RushApp.FTP.Transfer
Declare
procedure Transfer(
Handle: Integer;
SrcList, SrcFolder, SrcItem, DesList, DesFolder, DesItem: string;
Flag: Integer;
FolderAllow, FolderSkip, FileAllow, FileSkip: string;
CompleteFlag: string;
RepeatCount: Integer;
RetryCount: Integer;
Timeout: Integer;
FolderSort, FileSort: Integer;
Depth, SubCount: Integer;
);
Description
Transfer Queue , support upload download and FXP
EnableSite
Declare
procedure EnableSite(Sitename: string; ThisSession: boolean);
Description
Enable a site
DisableSite
Declare
procedure DisableSite(Sitename: string; ThisSession: boolean);
Description
Disable a site |