Option Explicit

Sub createFolder()
    On Error Resume Next
    
    'create folder with vba
    VBA.MkDir ("D:\Excel\VBA_Example")
End Sub