It's easy to make a list using FileSearch. From vba HELP
With Application.FileSearch
If .Execute() > 0 Then
MsgBox "There were " & .FoundFiles.Count & _
" file(s) found."
For i = 1 To .FoundFiles.Count
MsgBox .FoundFiles(i)
Next i
Else
MsgBox "There were no files found."
End If
End With==========This modification should do itSub GetFileList()
Dim iCtr As Integer
With Application.FileSearch
.NewSearch
.LookIn = "c:\yourfolder"
' .SearchSubFolders = True
.Filename = ".mp3"
If .Execute > 0 Then
For iCtr = 1 To .FoundFiles.Count
Cells(iCtr, 1).Value = .FoundFiles(iCtr)
Next iCtr
End If
End With
End Sub
======
Mine are laid out as
Carolyn Hester - House Of The Rising Sun.mp3
It depends on how the songs are in your folder as to how they show up. I can
custom design one for you that will list the songs by title and by artist.
You can sort on either and double click to play the song. You can also clear
duplicates, rename files, move files, kill files, copy files marked with a X
to another folder from which to make a cd, etc