Programming Reference Manual
 
Syntax
 
FCount(filespec$)
 
Description
Returns the number of files in the current directoy that match the filespec$ criteria. Wildcards, like ‘?’ and ‘*’ are supported.
 
Parameter
Description
filespec$
path specification, including wildcards. 
See Also
Example
 
Sub Main
s$ = “c”
i# = DiskFree(s$)
MsgBox “Free disk space on drive '” & _
s$ & “’ is: “ & i#
End Sub