Answers for "excel vba folder exist"

VBA
22

excel vba check if directory exists

Public Function IsDir(s)
    IsDir = CreateObject("Scripting.FileSystemObject").FolderExists(s)
End Function
Posted by: Guest on April-03-2020
3

excel vba folder exist

If Dir("C:\Temp\xxx", vbDirectory) = "" Then
    MsgBox "Doesn't exists"
End If
Posted by: Guest on May-31-2021

Code answers related to "VBA"

Browse Popular Code Answers by Language