FileLen Function |
Syntax:
FileLen(Name$)
Group:
Description:
Returns the length of file Name$. If the file does not exist then a run-time error occurs.
Parameters:
Parameter |
Description |
This string value is the path and name of the file. A path relative to the current directory can be used. |
Example:
Sub Main
F$ = Dir$("*.*")
While F$ <> ""
Debug.Print F$;" ";FileLen(F$)
F$ = Dir$()
Wend
EndSub