Try the following. It is not fully tested and contains no error-handling:
It's written to list the files from a floppy but you can change that to your
folder. From Vasant. HTH Otto
Sub CatalogFloppies()
Do Until MsgBox("Any more floppies?", vbYesNo) = vbNo
MsgBox "Insert floppy disk and click OK."
Dim i As Long
With Application.FileSearch
.NewSearch
.LookIn = "A:\"
.SearchSubFolders = True
.FileType = msoFileTypeAllFiles
If .Execute > 1 Then
For i = 1 To .FoundFiles.Count
ActiveSheet.Cells(Rows.Count, 1). _
End(xlUp).Offset(1, 0) = .FoundFiles(i)
Next i
End If
End With
Loop
End Sub