FileExists Method (SystemFunctions)

Action

Checks whether the specified file exists.

Syntax

C#

bExists = FileExists (sFilePath);

VB

bExists = FileExists (sFilePath)
Variable Description
bExists Whether the file exists. Returns true if the file exists and false if it does not. Boolean.
sFilePath The path to the file. Can be either an absolute path or a path relative to the current working directory. String.