FileExists
function FileExists(sFileName As String) As Boolean
FileExists returns TRUE if the file specified by sFileName exists. If the file does not exist, FileExists returns FALSE.
Parameters
Example:
If FileExists("e:\exp\template.rss") Then
' actions...
End If