Collabora Office 21.06 Help
確定資料媒體中是否存在某個檔案或目錄。
FileExists (FileName As String | DirectoryName As String)
布林型
FileName | DirectoryName:包含明確檔案定義的任意字串型表示式。也可以使用 URL 表示法。
Sub ExampleFileExists
MsgBox FileExists("C:\autoexec.bat")
MsgBox FileExists("file:///d|/bookmark.htm")
MsgBox FileExists("file:///d|/Private")
End Sub