Answers for "excel vba existence of a file"

VBA
0

excel vba existence of a file

' Existence of a file 
If Dir("C:\myDirectory\myFile", vbDirectory) = vbNullString Then
    MsgBox "Doesn't exists"
Else
    MsgBox "Exists"
End If
Posted by: Guest on January-14-2021

Code answers related to "VBA"

Browse Popular Code Answers by Language