Sub sell()
Dim fso As Object
Dim fold
Dim file
Dim s As String
s = "C:\My Documents\YOUR FOLDER NAME HERE"
Set fso = CreateObject("scripting.filesystemobject")
Set fold = fso.getfolder(s)
With fold
For Each file In .Files
MsgBox file.Name
Next
MsgBox "There are " & .Files.Count & " files in folder " & s
End With
Set fso = Nothing
Set fold = Nothing
End Sub