|
FileExists |
Top Previous Next |
|
FileExists returns true if the file or folder exists, and false if it does not.
Syntax
exists = FileExists( path )
Parameters
Examples
IF FileExists( fileManager.DefaultFolder + "test.txt" ) THEN PRINT "File Exists" ELSE PRINT "File does not exist." ENDIF
|