This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!
LOF Function Example
This example uses the
LOF function to determine the size of an open file. This example assumes that
TESTFILE
is a text file containing sample data.
Dim FileLength
Open "TESTFILE" For Input As #1 ' Open file.
FileLength = LOF(
1)
' Get length of file.
Close #1 ' Close file.