August 1999
Intermediate to advanced
1488 pages
72h 53m
English
folder.DateLastAccessed
The DateLastAccessed property of an instance of the Folder object is used to get the date the folder was last accessed.
Listing 9.99 is run in an Internet Explorer browser, and it contains a single button. When the button is clicked, an alert box pops up displaying the date the folder was last accessed.
<html> <body> <script language="JScript"> <!-- Hide function get(){ // Create a FileSystemObject object var myObject = new ActiveXObject("Scripting.FileSystemObject"); // Create a Folder object var myFolder = myObject.GetFolder("c:\\Temp"); // Display the date the folder was last accessed alert (myFolder.DateLastAccessed); ... |
Read now
Unlock full access