📜  如果不存在 vba 创建文件夹 - VBA 代码示例

📅  最后修改于: 2022-03-11 14:51:54.705000             🧑  作者: Mango

代码示例2
'Don't requires refernce of Microsoft Scripting Runtime
Path = "D:\FolderName\"
If Len(Dir(Path, vbDirectory)) = 0 Then
   MkDir Location
End If