Name
Exists -- check if the specified file exists
Synopsis
result = Exists(filename$)
Function
Checks if the file specified by filename$ exists and returns True to the variable result if it does. Otherwise result receives the value of False.

Inputs
filename$
file to check
Results
result
True if the specified file exists, False otherwise
Example
result = Exists("test.hws")
Print(result)
This tests whether the file "test.hws" exists in the current directory and returns True or False.

Show TOC