Purpose
Returns a logical value indicating whether or not a file exists. You can call this function from the MapBasic window in MapInfo Pro.
Syntax
FileExists( filespec )
filespec is a string that specifies the file path and name.
Return Value
Logical: TRUE if the file already exists, otherwise FALSE.
Example
If FileExists("C:\MapInfo\TODO.TXT") Then
Open File "C:\MapInfo\TODO.TXT" For INPUT As #1
End If
See Also:
TempFileName$() function