Axuda do Collabora Office 24.04
Determina se un ficheiro ou cartafol está dispoñíbel no soporte de datos.
FileExists(NomeFicheiro As String | NomeCartafol 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