. . . so I cut & pasted the code from https://learn.microsoft.com/en-us/office/vba/language/reference/user-interface-help/datecreated-property
and it works just FINE.
It gives me the creation date & time of any file.
BUT
I don't know what "format" it is in, because, having used that routine to acquire "FileDateStamp", this doesn't work :-
FileAge = Application.Function.Now() - FileDateStamp
I have tried these :-
Dim FileDateStamp
Dim FileDateStamp as Date
Dim FileDateStamp as Text
Each format provides the datestamp, but none works in the formula. And neither does the "Date(Year, Month, Day)" function on FileDateStamp

FileAge = Now - FileDateStamp. UseFormat$afterwards to format into something readable.TypeName(f.DateCreated)tells you it's aDateApplication.Function.Now()is not a thing (at least in VBA), but justNow()works fine, soNow - FileDateStampgives you file age in days.Datedatatype includes time - there aren't two separate datatypes. There might not be any fractional component in an assigned value though. You can alwaysDebug.Print 1 * FileDateStampto see the underlying numeric value.