“File VBA ada” Kode Jawaban

VBA Periksa apakah ada file

Public Function IsFile(s)
    IsFile = CreateObject("Scripting.FileSystemObject").FileExists(s)
End Function
Excel Hero

Excel VBA keberadaan file

' Existence of a file 
If Dir("C:\myDirectory\myFile", vbDirectory) = vbNullString Then
    MsgBox "Doesn't exists"
Else
    MsgBox "Exists"
End If
VasteMonde

File VBA ada

Sub test()

thesentence = InputBox("Type the filename with full extension", "Raw Data File")

Range("A1").Value = thesentence

If Dir(thesentence) <> "" Then
    MsgBox "File exists."
Else
    MsgBox "File doesn't exist."
End If

End Sub
Robert Dorrigan

Jawaban yang mirip dengan “File VBA ada”

Pertanyaan yang mirip dengan “File VBA ada”

Lebih banyak jawaban terkait untuk “File VBA ada” di VBA

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya