Date Created or Date Modified? I don't know if that object supports Date Modified.
Here is a utility to check date created. I will do research for date modified:
'==========
stPath = InputBox("Type the folder path:")
Set FSO = CreateObject("Scripting.FileSystemObject")
Set stFolder = FSO.GetFolder(stPath)
stDateCreated = stFolder.DateCreated
WScript.Echo stDateCreated
'==========
mmcdonal
|