Hi April,
This is very simple to achieve using logparser and I think it is the perfect tool for something like this.
You use the Filesystem (FS) input format to get the information you want and you pump it directly into the database you want using the SQL output format. No intermediate steps required.
You would need to decide what date and time and other fields you want, as you get Create, Access and Write. What you might want to do is simply take all the information as it can prove useful.
When you do this for the first time, you can use the additional parameter to the SQL output of -createtable:ON and thereafter just append to the table. You can use any ODBC compliant datasource, in my example, I use M$ Access.
LogParser "SELECT * INTO MyTable FROM C:\*.*" -i:FS -o:SQL -oConnString:"Driver={Microsoft Access Driver (*.mdb)};Dbq=C:\MyDB\MyDB.mdb" -createtable:ON
Refer to the logparser.chm for the syntax and some examples. Hope this helps.
Cheers, Dave