核心代码- CreateFolders "d:\jb51test\1\2\3\4\5"
- Function CreateFolders(path)
- Set fso = CreateObject("scripting.filesystemobject")
- CreateFolderEx fso,path
- set fso = Nothing
- End Function
- Function CreateFolderEx(fso,path)
- If fso.FolderExists(path) Then
- Exit Function
- End If
- If Not fso.FolderExists(fso.GetParentFolderName(path)) Then
- CreateFolderEx fso,fso.GetParentFolderName(path)
- End If
- fso.CreateFolder(path)
- End Function
复制代码 经过测试运行没问题
文中的两个函数链接CreateFolder 方法与GetParentFolderName 方法。
来源:互联网
免责声明:如果侵犯了您的权益,请联系站长(1277306191@qq.com),我们会及时删除侵权内容,谢谢合作! |