Collabora Office 24.04 Help
Xác định nếu một tập tin hoặc thư mục có sẵn trong vật chứa dữ liệu.
FileExists(FileName As String | DirectoryName As String)
Bool
FileName | DirectoryName: bất cứ biểu thức chuỗi nào mà chứa một đặc tả tập tin không mơ hồ. Bạn cũng có thể sử dụng kiểu ghi URL.
Sub ExampleFileExists
MsgBox FileExists("C:\autoexec.bat")
MsgBox FileExists("file:///d|/bookmark.htm")
MsgBox FileExists("file:///d|/Private")
End Sub