Dim objFSO
Set objFSO = CreateObject("Scripting.FileSystemObject")
strFolderPath = "Path/To/Folder"
On Error Resume Next
'Errors if the folder already exists
objFSO.CreateFolder strFolderPath
On Error GoTo 0
Set objFSO = Nothing
FollowHyperlink strFolderPath