VBA创建文件夹

Option Explicit

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

分享标题:VBA创建文件夹
文章出自:http://scyanting.com/article/ggeegd.html