LOTUSSCRIPT LANGUAGE
Examples: Dir function
' List the contents of the c:\ directory, one entry per line.
Dim pathName As String, fileName As String
pathName$ = "c:\*.*"
fileName$ = Dir$(pathName$, 0)
Do While fileName$ <> ""
Print fileName$
fileName$ = Dir$()
Loop
See Also
Dir function
Glossary
Feedback on
Help
or
Product Usability
?
Help on Help
All Help Contents
Glossary