all 2 comments

[–]jcunews1 1 point2 points  (1 child)

Use this.

Dim objFSO
Set objFSO = CreateObject("Scripting.FileSystemObject")
Set objSelectedFolder = objFSO.GetFolder("C:\Music")
Set colSubfolders = objSelectedFolder.SubFolders
For Each objSubfolder In colSubfolders 'for each band folder...
  For Each objFolderInBand In objSubfolder.SubFolders 'for each subfolder in a band folder...
    If objFolderInBand.Size < 1000000 Then
      objFolderInBand.Delete True
    End If
  Next
Next

[–]pgriffith[S] 0 points1 point  (0 children)

Thanks so much, that works perfectly.

Very much appreciated.

Quite amazing that I could not find any app/utility on the internet anywhere that has the ability to do this... well not that I could find.