Database to List File Names and Folders

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I am trying to create a database that will go a specific folder and populate
the database with the file names, path, and date. Has anyone created such a
database?
 
New Kid said:
I am trying to create a database that will go a specific folder and
populate the database with the file names, path, and date. Has
anyone created such a database?

How are you with VBA code? The Dir() function will retrieve the names
of files in a folder, and the FileDateTime function will return the
last-modified date of any given file.
 
Thank you. I'll give this a try.

Dirk Goldgar said:
How are you with VBA code? The Dir() function will retrieve the names
of files in a folder, and the FileDateTime function will return the
last-modified date of any given file.

--
Dirk Goldgar, MS Access MVP
www.datagnostics.com

(please reply to the newsgroup)
 
Back
Top