Guida di Collabora Office 24.04
Determina se un file o una cartella è disponibile nel supporto dati.
FileExists(FileName As String | DirectoryName As String)
Bool
FileName (NomeFile) | DirectoryName (NomeCartella): stringa che specifica un file in modo univoco. In alternativa, potete usare una notazione URL.
Sub ExampleFileExists
MsgBox FileExists("C:\autoexec.bat")
MsgBox FileExists("file:///d|/bookmark.htm")
MsgBox FileExists("file:///d|/Private")
End Sub