VBA to rename a folder (not file)

AndrewKent

Well-known Member
Joined
Jul 26, 2006
Messages
889
Hi all,

I have a folder with multiple sub folders that are all "# Jan", "# Feb" ect. and rather than change these manually I am looking to write a VBA script that will loop through each sub folder and rename them to "01 Jan", "02 Feb" ect.

Any advice?

Andy
 

Excel Facts

VLOOKUP to Left?
Use =VLOOKUP(A2,CHOOSE({1,2},$Z$1:$Z$99,$Y$1:$Y$99),2,False) to lookup Y values to left of Z values.
This is the code to rename. Are you Ok with the loop code?

Code:
Sub RenameFolder()

Dim sOld As String, sNew As String


    'change values as required
    sOld = "C:\Test"
    sNew = "C:\TestNew"
    
    'change name
    Name sOld As sNew
    
End Sub
 
Upvote 0
After re-reading, it wasn't as simple as I thought:

This will do as you ask, replacing the "#" with the month number of the 3 chr short month name

Change the InitialPath variable as required

Code:
Sub RenameSubfolders()


Dim FileSystem As Object, Folder As Object, SubFolder As Object
Dim InitialPath As String
Dim sOld As String, sNew As String


    InitialPath = "C:\Test\Test2\"
    
    Set FileSystem = CreateObject("Scripting.filesystemobject")
    Set Folder = FileSystem.GetFolder(InitialPath)
    
    For Each SubFolder In Folder.subfolders
        sOld = SubFolder.Name
        If InStr(1, sOld, "#") > 0 Then
            sNew = Replace(sOld, "#", Format(Month("01/" & Right(sOld, 3)), "00"))
            Name InitialPath & sOld As InitialPath & sNew
        End If
    Next SubFolder


End Sub
 
Upvote 0

Forum statistics

Threads
1,214,971
Messages
6,122,525
Members
449,088
Latest member
RandomExceller01

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