APGen Documentation Previous Topic: Script.Path Next Topic: Script.Debug Parent Topic: Script Object    Script Object
Script.LastModified
See Also:

The Script.LastModified property returns the most recent date/time that any of the source files was modified.

Syntax

VBScript:

dtLastModified = Script.LastModified

JScript:

dtLastModified = Script.LastModified;
Object

Script The Script object.

Return Value

dtLastModified A date/time value specifying the most recent last modified date of any of the source files used by the script.

Notes

The tree of source files is walked to find the file with the most recent last modified date, starting with the root script file and continuing with all include files.

Applies To

Script Object