A script to create folders needed

kelly mort

Well-known Member
Joined
Apr 10, 2017
Messages
2,169
Office Version
  1. 2016
Platform
  1. Windows
Hi All,
I need a script that will use the "ThisWorkbook.Path" and looks for a folder called "sFiles" in the workbook path and if not found, then create it and inside it, create other folders matching the names for all items in TextBox2.

TextBox2 is populated by TextBox1

Thanks in advance
Kelly
 

Excel Facts

When they said...
When they said you are going to "Excel at life", they meant you "will be doing Excel your whole life".
Code:
Sub PassportFolderCreate()
Dim l As Long    
    With ActiveWorkbook
    If .Path = "" Then Exit Sub
        mainPicturesFolderPath = .Path & "\" & "PASSPORT PICTURES"
    End With
        If Dir(mainPicturesFolderPath, vbDirectory) = vbNullString Then MkDir mainPicturesFolderPath
        For l = 0 To UserForm1.reg3.ListCount - 1
            If Dir(mainPicturesFolderPath & UserForm1.reg3.ListIndex(l), vbDirectory) = vbNullString Then MkDir mainPicturesFolderPath & UserForm1.reg3.ListIndex(l)
        Next l
  End Sub


I have tried to come up with this code yet it is not getting me results

Any idea what the issue is?

I get an error type mismatched then highlights the if line between the for loop.

Please help
 
Upvote 0

Forum statistics

Threads
1,215,378
Messages
6,124,601
Members
449,173
Latest member
chandan4057

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