Lof
Lunghezza = Lof ( Flusso AS Stream ) AS Long
Restituisce la lunghezza dello stream aperto
Flusso.
Examples
OPEN sFileName FOR READ AS #hFile
...
PRINT "Il file è lungo :; Lof(hFile)
Se lo stream non è un file, ad esempio è un processo (
Process) o una connessione (
Socket), allora sarà restituito il numero di bytes che possono essere letti ogni volta.
PUBLIC SUB Process_Read()
DIM sBuffer AS String
PRINT "Posso leggere "; Lof(hLAST)
' Vengono letti.
READ #hLAST, sBuffer, Lof(hLAST)
END
Vedi anche