hola eso lo haces con el file sistem object
encontré esto en el enlace:
http://msdn.microsoft.com/library/de...atecreated.asp
Function ShowFileInfo(filespec)
Dim fso, f
Set fso = CreateObject("Scripting.FileSystemObject")
Set f = fso.GetFile(filespec)
ShowFileInfo = "Created: " & f.DateCreated
End Function
En ese enlace puedes encontrar más información sobre fechas de creación, modificacíon otras hierbas.