 |
|
|
 |
| Function |
Description |
Parameters |
Usage |
| Connect |
Connect to FTP server |
host - alpha userid - alpha pwd - alpha
returns status - alpha |
udf('hfftp.connect', host, userid, pwd ) |
| Disconnect |
Disconnect from FTP server |
|
udf('hfftp.disconnect') |
| ChangeDir |
Change Directory on FTP server |
dir - alpha returns resultdir - alpha |
udf('hfftp.changedir', dir ) |
| GetDir |
Get current directory on FTP server |
returns currentdir - alpha |
udf('hfftp.getdir') |
| Download |
Download a file from the FTP server |
remotefile - alpha localfile - alpha
returns status - alpha |
udf('hfftp.download', remotefile, localfile ) |
| DownloadDisplay |
Download a file from the FTP server using a progress dialog |
remotefile - alpha localfile - alpha
dialogcaption - alpha progresspercent - number returns status - alpha |
udf('hfftp.downloaddisplay', remotefile, localfile, dialogcaption, progress ) |
| Upload |
Upload a file to the FTP server |
remotefile - alpha localfile - alpha
returns status - alpha |
udf('hfftp.download', remotefile, localfile ) |
| UploadDisplay |
Upload a file to the FTP server with a progress dialog |
remotefile - alpha localfile - alpha
dialogcaption - alpha progresspercent - number returns status - alpha |
udf('hfftp.uploaddisplay', remotefile, localfile, dialogcaption, progress ) |
| Delete |
Delete a file on the FTP server |
filename - alpha
returns status - alpha |
udf('hfftp.delete', filename ) |
| Version |
Returns module version string |
|
udf('hfftp.version') |
 |
|
|
 |
|