Excel Vba Folder Exist

[Solved] Excel Vba Folder Exist | Vb - Code Explorer | yomemimo.com
Question : excel vba check if directory exists

Answered by : daniel-ferry

Public Function IsDir(s) IsDir = CreateObject("Scripting.FileSystemObject").FolderExists(s)
End Function

Source : http://academy.excelhero.com/ | Last Update : Fri, 10 Apr 20

Question : excel vba folder exist

Answered by : vastemonde

If Dir("C:\Temp\xxx", vbDirectory) = "" Then MsgBox "Doesn't exists"
End If

Source : | Last Update : Mon, 07 Jun 21

Answers related to excel vba folder exist

Code Explorer Popular Question For Vb