Previous PageNext Page

7.17.4 DateCreated Property

Returns the date and time that the specified folder was created. Read-only.
 

Syntax

object.DateCreated

object
A File or Folder object.

Remarks

The following code illustrates the use of the DateCreated property with a folder:
 

function ShowFileInfo(filespec)

{

var fs, f, s;

fs = new ActiveXObject("Scripting.FileSystemObject");

f = fs.GetFolder(filespec);

s = "Created: " + f.DateCreated;

Response.Write(s);

}


Copyright © 2000 Chili!Soft

Previous PageTop Of PageNext Page