Sub FileExists($fileName As String) As Boolean


FileExists returns TRUE if the file specified by $fileName exists. If the file does not exist, FileExists returns FALSE.


Parameters


  • $fileName ... String expression that specifies the absolute path and file name.


Example:

If FileExists("e:\exp\template.rss") Then
   ' actions...
End If