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