15. ¿Se puede ver la fecha en que ha sido creado un archivo?
El método FileSystemObject.GetFile permite ver la fecha de creación.
Ejemplo
<%
dim filetest, texto , x
Set filetest= CreateObject("Scripting.FileSystemObject")
Set texto = filetext, .CreateTextFile("c:\prueba.txt", true)
Set x = filetext, .GetFile("C:\prueba.txt")
Response.Write ("Fecha de creación" & x.DateCreated)
%>