Nesting Multiple Tests Of MkDir's?

Lewzerrrr

Active Member
Joined
Jan 18, 2017
Messages
256
Hi,

If I wanted to test if any of these filepaths exist and if not to create, what would be the simplest way to nest create? e.g. S:\Folder1\Folder2\Folder3\Folder4

What I've been using is.. but can it be shortened?

Code:
If Len(Dir("S:\Folder1\", vbDirectory)) = 0 Then    
    MkDir ("S:\Folder1\"
End If


If Len(Dir("S:\Folder1\Folder2\", vbDirectory)) = 0 Then
    MkDir ("S:\Folder1\Folder2\")
End If


If Len(Dir("S:\Folder1\Folder2\Folder3\", vbDirectory)) = 0 Then
    MkDir ("S:\Folder1\Folder2\Folder3\")
End If


If Len(Dir("S:\Folder1\Folder2\Folder3\Folder4\", vbDirectory)) = 0 Then
    MkDir ("S:\Folder1\Folder2\Folder3\Folder4\")
End If
 
Last edited:

Excel Facts

Show numbers in thousands?
Use a custom number format of #,##0,K. Each comma after the final 0 will divide the displayed number by another thousand
Hi
try this

in a standard module:

Code:
Sub MakeDirectory(ByVal FolderPath As String)
    Dim SubFolders As Variant
    Dim MakeFolder As String
    Dim i As Integer
    
    SubFolders = Split(FolderPath, "\")
    
    For i = 0 To UBound(SubFolders)
        Select Case i
        Case 0
            MakeFolder = SubFolders(i) & "\"
        Case 1
            MakeFolder = MakeFolder & SubFolders(i)
        Case Else
            MakeFolder = MakeFolder & "\" & SubFolders(i)
        End Select
        
        If Dir(MakeFolder, vbDirectory) = vbNullString Then MkDir MakeFolder
    Next
End Sub


to call it:

Code:
MakeDirectory "S:\Test\Folder1\Folder2\Folder3\Folder4"

Dave
 
Last edited:
Upvote 0
Hi
try this

in a standard module:

Code:
Sub MakeDirectory(ByVal FolderPath As String)
    Dim SubFolders As Variant
    Dim MakeFolder As String
    Dim i As Integer
    
    SubFolders = Split(FolderPath, "\")
    
    For i = 0 To UBound(SubFolders)
        Select Case i
        Case 0
            MakeFolder = SubFolders(i) & "\"
        Case 1
            MakeFolder = MakeFolder & SubFolders(i)
        Case Else
            MakeFolder = MakeFolder & "\" & SubFolders(i)
        End Select
        
        If Dir(MakeFolder, vbDirectory) = vbNullString Then MkDir MakeFolder
    Next
End Sub


to call it:

Code:
MakeDirectory "S:\Test\Folder1\Folder2\Folder3\Folder4"

Dave

Thanks Ill give that a try, I've also come up with error handling it instead such as:
Code:
On Error Resume Next
MkDir("S:\Folder1\")
MkDir("S:\Folder1\Folder2\")
MkDir("S:\Folder1\Folder2\Folder3\")
On Error GoTo 0

What's the downside to this?
 
Upvote 0

Forum statistics

Threads
1,216,076
Messages
6,128,670
Members
449,463
Latest member
Jojomen56

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top