Click to See Complete Forum and Search --> : File Exists


July 19th, 1999, 10:20 AM
How can I test if a specific file exists, without using ActiveX components?

Lothar Haensler
July 19th, 1999, 10:26 AM
If Dir("c:\doesnt exist") = "" then
MsgBox "file doesnt exist"
End If