Nápověda Collabora Office 24.04
Určuje, zda soubor nebo adresář existuje na datovém médiu.
FileExists(FileName As String | DirectoryName As String)
Bool
FileName | DirectoryName: Řetězec jednoznačně určující soubor. Také je možné použít URL notaci.
Sub ExampleFileExists
MsgBox FileExists("C:\autoexec.bat")
MsgBox FileExists("file:///d|/bookmark.htm")
MsgBox FileExists("file:///d|/Private")
End Sub