Answers for "excel vba check if directory exists"

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

Code answers related to "excel vba check if directory exists"

Code answers related to "VBA"

Browse Popular Code Answers by Language