FileExists
The FileExists function returns true if file exists .
Syntax :
FileExists(FilePath)
| Parameters | Description |
|---|---|
| FilePath | Path of the file. |
Example :
dFileExists = FileExists("C:\Test.txt")
- dFileExists will be True if C:\Test.txt is there False if not there.