IBM Lotus Symphony
|
Determines if a file or a directory is available on the data medium.
FileExists(FileName As String | DirectoryName As String)
Bool
FileName | DirectoryName: Any string expression that contains an unambiguous file specification. You can also use URL notation.
sub ExampleFileExists
msgbox FileExists("C:\autoexec.bat")
msgbox FileExists("file:///d|/bookmark.htm")
msgbox FileExists("file:///d|/private")
end sub