Find file
Posted: Sat Aug 20, 2005 4:10 pm
How can I find a certain file with PDS?
Not that good yet with PDS.
grtz
Seb
Not that good yet with PDS.
grtz
Seb
Code: Select all
search$ = "*.BAS"
ret$ = DIR$(search$)
While ret$ <> ""
Print ret$
ret$ = DIR$()
Wend