脚本之家,脚本语言编程技术及教程分享平台!
分类导航

Python|VBS|Ruby|Lua|perl|VBA|Golang|PowerShell|Erlang|autoit|Dos|bat|

服务器之家 - 脚本之家 - VBS - VBS递归创建多级目录文件夹的方法

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

2020-08-20 10:31piaoyunlive VBS

这篇文章主要介绍了VBS递归创建多级目录文件夹的方法,主要使用的是vbs fso的GetParentFolderName与CreateFolder函数,需要的朋友可以参考下

核心代码

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
CreateFolders "d:\zzvipstest\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

经过测试运行没问题

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

文中的两个函数链接CreateFolder 方法与GetParentFolderName 方法。

原文链接:https://blog.csdn.net/piaoyunlive/article/details/89084923

延伸 · 阅读

精彩推荐