Pretty much as the title
Ensure you have a table called tblFiles with one field called Filename
Here I am finding all files in folderspec = “C:\Users\Mark\Documents\CodePoint\Data\CSV”
Alter as appropriate
Public Function ShowFolderList()
Dim fs, f, f1, fc, s
Dim rs As DAO.Recordset
Dim folderspec
Set rs = CurrentDb.OpenRecordset("tblFiles")
folderspec = "C:\Users\Mark\Documents\CodePoint\Data\CSV"
Set fs = CreateObject("Scripting.FileSystemObject")
Set f = fs.GetFolder(folderspec)
Set fc = f.Files
For Each f1 In fc
rs.AddNew
rs.Fields("FileName") = f1.Name
rs.Update
Next
Set rs = Nothing
MsgBox "Finished"
End Function