LINGUAGGIO LOTUSSCRIPT
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
Vedere anche
Dir function
Glossario
Guida sulla Guida
Contenuto completo della Guida
Glossario