This documentation was styled with a demo skin from the Premium Pack 4 add-on for Help & Manual. The contents of the skin are encrypted and not configurable. You can only publish HM projects with this skin. You cannot edit it or change it.
This version is copyright and may only be used for local testing purposes. It may not be distributed.
Please purchase the full version of the Premium Pack to get the configurable skins and remove this notice. The package will also include the Toolbox configuration utility for Premium Pack skins.
Description
Extracts strings from FTP formatted file list.
Syntax
sLine = FTP_Extract(sFileListBuffer, LineNumber, FieldNumber)
Returns
String
The line LineNumber from sFileListBuffer
Parameters
Name |
Type |
Optional |
Meaning |
sFileListBuffer |
String |
No |
Buffer returned by FTP_GetList |
LineNumber |
Number |
No |
Line Number |
FieldNumber |
Number |
No |
Field number |
Remarks
The FTP_Extract function extracts fields from FTP formatted file lists for LineNumber and field FieldNumber.
A typical line in a full FTP directory listing may look like the following. Note that there are 9 fields.
rw rr 1 345 15 100424 Feb 8 16:26 FileName.zip
In the line above, field 5 is the file length.
The FTP_Extract function is typically called after calling FTP_GetList.
Restrictions
See also
Examples