Purpose
Checks whether a file on the FCAS computer exists at a given path.
Syntax
File.Exists ("Path")
Example
Dim MyFile as File
If MyFile.Exists("FCAS Config|About this folder") Then
Debug "This one exists"
End If
If MyFile.Exists("FCAS Config|About this potato") Then
Debug "This one doesn't"
End If
|