It's a placeholder.
Trying again...
exact match:
If Dir("d:\excel\somefile.xls") <> "" Then
'code for file exists
Else
'code for file does not exist
End If
partial match:
If Dir("d:\excel\*somefile*.xls*") <> "" Then
'code for at least 1 match
Else
'code for no matches
End If