Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Sub Create_Folder_If_NonExistant()
Dim f, fso
On Error GoTo FileExists
Set fso = CreateObject("Scripting.FileSystemObject")
Set f = fso.CreateFolder("C:\My Documents\Test")
Set fso = Nothing
Set f = Nothing
Exit Sub
FileExists:
MsgBox "This folder already exists!!!", vbCritical, "Folder Exists"
Set fso = Nothing
Set f = Nothing
End Sub