首页 > 编程 > VBScript > 正文

VBS递归创建多级目录文件夹的方法

2020-07-26 11:20:01
字体:
来源:转载
供稿:网友

核心代码

CreateFolders "d:/jb51test/1/2/3/4/5" Function CreateFolders(path)	Set fso = CreateObject("scripting.filesystemobject")	CreateFolderEx fso,path	set fso = NothingEnd FunctionFunction 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 方法。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表