asked on 11/9/2017
Const SOME_PATH As String = "C:\Anderson\" Dim file As String file = Dir(SOME_PATH & "filename*esy" & ".") If (Len(file) > 0) Then MsgBox ("Found") Else MsgBox ("Not Found") End If End Sub
Select allOpen in new window