OK. You can use something like this:
Dim intFileCount as integer, fs
Set fs = Application.FileSearch
With fs
.LookIn = "C:\yourdirectorypath"
.FileName = "yourfilename"
intFileCount = .Execute
End With
If intFilecount is greater than 0 then the file exists.