Jewtus Posted July 8, 2016 Share Posted July 8, 2016 $aTime1=FileGetTime($file,1) $aTime2=FileGetTime($file,0) $sTime1= $aTime1[1]&"/"&$aTime1[2]&"/"&$aTime1[0] $sTime2= $aTime2[1]&"/"&$aTime2[2]&"/"&$aTime2[0] MsgBox(0,"",$sTime1 &@TAB&$sTime2) This is the code that I'm using to get created date and updated date, which works as intended, but I noticed some of my create dates were after my updated date (which made no sense to me) so I looked at the file properties and I figured out what element I need... In the file properties, the Origin section has "Content Created" and "Date Last Saved", which are really the values I'm looking to pull. Is there any simple way? I didn't see anything in the filegetattrib function that looked like it would work... Link to comment Share on other sites More sharing options...
water Posted July 8, 2016 Share Posted July 8, 2016 Something like this: or, even newer, this: Jewtus 1 My UDFs and Tutorials: Spoiler UDFs: Active Directory (NEW 2024-07-28 - Version 1.6.3.0) - Download - General Help & Support - Example Scripts - Wiki ExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example Scripts OutlookEX (2021-11-16 - Version 1.7.0.0) - Download - General Help & Support - Example Scripts - Wiki OutlookEX_GUI (2021-04-13 - Version 1.4.0.0) - Download Outlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - Wiki PowerPoint (2021-08-31 - Version 1.5.0.0) - Download - General Help & Support - Example Scripts - Wiki Task Scheduler (2022-07-28 - Version 1.6.0.1) - Download - General Help & Support - Wiki Standard UDFs: Excel - Example Scripts - Wiki Word - Wiki Tutorials: ADO - Wiki WebDriver - Wiki Link to comment Share on other sites More sharing options...
Jewtus Posted July 8, 2016 Author Share Posted July 8, 2016 Exactly! Thank you! Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now