check if file exists?


Posted by doug on January 24, 2001 2:03 PM

anyone know a fast way to check if a file exists?



Posted by Celia on January 24, 2001 4:35 PM


If Dir("full path filename") <> "" Then
MsgBox "File exists"
Else
MsgBox "File does not exist"
End If