Collabora Office 24.04 Help
Bepaalt of een bestand of een map beschikbaar is op het gegevensmedium.
FileExists(BestandsNaam As String | MapNaam As String )
Booleaans
BestandsNaam | MapNaam: Een tekenreeks die een ondubbelzinnige bestandsspecificatie bevat. Hier kan ook de URL-notatie worden gebruikt.
Sub ExampleFileExists
MsgBox FileExists("C:\autoexec.bat")
MsgBox FileExists("file:///d|/bookmark.htm")
MsgBox FileExists("file:///d|/Private")
End Sub