Whatever message this page gives is out now! Go check it out!
FileSetLastModified(filepath, date) |
Parameter | Description |
filepath | An absolute path to an on-disk or in-memory file on the server. |
date | A valid ColdFusiondate or datetime. |
<cfscript>
FileSetLastModified("c:\temp\test1.txt", "#Now()#");
WriteOutput(#GetFileInfo("c:\temp\test1.txt").lastmodified#);
</cfscript>