Using the WIL language it is possible to get the extended time information for a directory. Use the function FileTimeGetEx.
windir = DirWindows(0)
windir = StrSub(1,StrLen(windir)-1);Remove backslash
time = FileTimeGetEx(windir,2)
Message(StrCat(windir," last modified"), time)
Exit