Get creation date and time of a file?

M

mscertified

Is there a way from Access to get the creation date and time of a file given
the full file path?
I import a file and have a need to compare dates to determine if a later
version of the file has replaced the one already imported.

Thanks - david
 
O

Ofer

FileDateTime(pathname)

Returns a Variant (Date) that indicates the date and time when a file was
created or last modified.

Syntax
 
M

mscertified

Amazing... Thanks.

Ofer said:
FileDateTime(pathname)

Returns a Variant (Date) that indicates the date and time when a file was
created or last modified.

Syntax
 
Top