Programming instructions

88
Intermec Fingerprint 6.13 – Programmer's Guide
LOF (Length-of-File)
The LOF function returns the length in bytes of an OPENed file.
The example illustrates how the length of the file "Pricelist" is
returned:
10 OPEN "PRICELIST" FOR OUTPUT AS #5
20 PRINT LOF(5)
. . . .
. . . .
8. OUTPUT FROM FINGERPRINT, cont'd.
3. Output and Append to
Sequential Files, cont'd.