I know how to get different dates from files, but is there a way of setting a date / time in a file??


Reading is easy:

Set FSO = CreateObject("Scripting.FileSystemObject")
Set FSOf = FSO.GetFile(fFile)
MsgBox FSOf.datecreated
MsgBox FSOf.datelastmodified
MsgBox FOSf.DateLastAccessed


BUT how do I write into the date:
FSOf.DateCreated = "12/12/2000 12:12:12" ???

Thanks. Chris