Small company logo:
   History
 
Advertising banner:
 
 File.Exists
Home • Help • Customization Tools • FCAS • Language Reference • File.Exists
 
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