VBS递归创建多级目录文件夹的方法
核心代码
CreateFolders "d:开发者_开发教程\jb51test\1\2\3\4\5" Function CreateFolders(path) Set fso = CreateObject("scripting.fi编程客栈lesystemobject") CreateFolderEx fso,path set fso = Nothing End Function Function CreateFolderEx(fso,path) If fso.FolderExists(path) Then Exit Function End If IfxqOGDdH Not fso.FolderExists(fso.GetParentFolderName(path)) Then CreateFolderEx fso,fso.GetParentFolderName(path) End If 编程客栈http://www.devze.comfso.CreateFolder(path) End FuxqOGDdHnction
经过测试运行没问题
文中的两个函数链接CreateFolder 方法与GetParentFolderName 方法。
精彩评论