Can this be change to list sub folders without the path name. Excel 2003

Paul B

Well-known Member
Joined
Feb 15, 2002
Messages
577
I have this code to show the empty sub folders, as is it shows the path and the folder name is there anyway to just show the folders name without the path?


Code:
Sub ListEmptyFolders()
Dim fso As Object
Dim folder As Object
Dim subfolder As Object
Dim emptyFolders As String

Set fso = CreateObject("Scripting.FileSystemObject")
Set folder = fso.GetFolder(Application.DefaultFilePath & "\" & "Music Copy")

For Each subfolder In folder.SubFolders
If subfolder.files.count = 0 And subfolder.SubFolders.count = 0 Then
emptyFolders = emptyFolders & subfolder.path & vbCrLf
End If

Next subfolder
If Len(emptyFolders) > 0 Then
MsgBox "The following folders are empty:" & vbCrLf & vbCrLf & emptyFolders
Else

MsgBox "No empty folders found."
End If
End Sub

Thanks
 

Excel Facts

Save Often
If you start asking yourself if now is a good time to save your Excel workbook, the answer is Yes
You can replace...

VBA Code:
emptyFolders = emptyFolders & subfolder.path & vbCrLf

with

VBA Code:
emptyFolders = emptyFolders & subfolder.Name & vbCrLf

Hope this helps!
 
Upvote 0
Solution

Forum statistics

Threads
1,224,823
Messages
6,181,181
Members
453,022
Latest member
Mohamed Magdi Tawfiq Emam

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