dr0w 0 Posted January 31, 2007 Hi! I have a little experience with au3, and I'm writing a script now. The problem is, that I can't find a way to read the last modify date of a folder. Can anyone help me? Thanks in advance dr0w Budapest / Hungary Share this post Link to post Share on other sites
SmOke_N 207 Posted January 31, 2007 FileGetTime() Hide SmOke_N's signature Hide all signatures Common sense plays a role in the basics of understanding AutoIt... If you're lacking in that, do us all a favor, and step away from the computer. Share this post Link to post Share on other sites
BigDod 518 Posted January 31, 2007 With a folder you just get the creation date and time not when something in it changed. $t = FileGetTime("c:\downloads", 1) If Not @error Then $yyyymd = $t[0] & "/" & $t[1] & "/" & $t[2] MsgBox(0, "Creation date of folder", $yyyymd) EndIf Hide BigDod's signature Hide all signatures Time you enjoyed wasting is not wasted time ......T.S. Elliot Suspense is worse than disappointment................Robert Burns God help the man who won't help himself, because no-one else will...........My Grandmother Share this post Link to post Share on other sites
dr0w 0 Posted January 31, 2007 Thanks a lot! I was blind Share this post Link to post Share on other sites