devxlogo

Create Folders Recursively if They Do Not Exist

Create Folders Recursively if They Do Not Exist

This script can be used in ASP or VBScript or Visual Basic. It is an easy way to create a folder tree.

 Sub CreateFolderTree(ByVal FolderName)    Dim objFSO    Dim InterminPath    Dim Loc    Dim bCreateFolder    Dim sName    sName = FolderName    bCreateFolder = False    Set objFSO = CreateObject("Scripting.FileSystemObject")    'Create folders recursively if they do not exist    InterminPath = ""    Do        'Seperate folders        Loc = InStr(FolderName, "")        If Loc = 0 Then            InterminPath = InterminPath & "" & FolderName            FolderName = ""        Else            If InterminPath = "" Then                    InterminPath = Left(FolderName, Loc - 1)            Else                    InterminPath = InterminPath & "" & Left _(FolderName,Loc - 1)            End If            FolderName = Mid(FolderName, Loc + 1)        End If        'Create subfolder in application directory if it _doesn't exist        If Not objFSO.FolderExists(InterminPath) Then            objFSO.CreateFolder (InterminPath)            bCreateFolder = True        End If    Loop While FolderName <> ""    If bCreateFolder Then        Msgbox "Created folder " & LCase(sName), ,"Status"    End IfEnd Sub
See also  Professionalism Starts in Your Inbox: Keys to Presenting Your Best Self in Email
devxblackblue

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.

About Our Journalist