November 13, 2000 - Probing the Last Modified Date
November 13, 2000 Probing the Last Modified Date Tips: October 2000
Yehuda Shiran, Ph.D.
|
DateLastModified
property of the File
object. Here is a piece of script that will print the file's last modified date:
<SCRIPT LANGUAGE="JavaScript">
<!--
myActiveXObject = new ActiveXObject("Scripting.FileSystemObject");
file = myActiveXObject.GetFile("c:\\test.txt");
alert(file.DateLastModified);
// -->
</SCRIPT>
You will get an alert box like this: