Provides access to all the properties of a folder. Can be obtained from the GetFolder Method on the FileSystemObject Object.
Function ShowDateCreated(folderspec) Dim fso, f Set fso = CreateObject("Scripting.FileSystemObject") Set f = fso.GetFolder(folderspec) ShowDateCreated = f.DateCreated End Function
function ShowFolderInfo(folderspec) { var fso, folder, s; fso = new ActiveXObject("Scripting.FileSystemObject"); folder = fso.GetFolder(folderspec); s = folder.DateCreated; return(s); }