Getting LastAccessTime with Delphi - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T03:58:32Z http://stackoverflow.com/feeds/question/1077579 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1077579/getting-lastaccesstime-with-delphi 0 Getting LastAccessTime with Delphi gcahill 2009-07-03T02:44:26Z 2009-07-03T06:50:26Z <p>I am currently using the following guidelines to get a file's "LastAccessTime" with Delphi <a href="http://www.latiumsoftware.com/en/delphi/00007.php" rel="nofollow">http://www.latiumsoftware.com/en/delphi/00007.php</a></p> <p>Using FindNext, have access to a TSearchRec object from which I can access ftLastWriteTime which is of type TFileTime</p> <p>when converting this to a TDateTime object (using the above source) and then outputting DateTimeToString I get the date and time out but the hour seems to be the sum of the two digits in the files ftLastWriteTime hour value.</p> <p>i.e instead of getting 2009/09/03 13:45 I get 2009/09/03 04:45 or instead of 2009/09/03 17:45 I get 2009/09/03 08:45</p> <p>Any comments are most welcome, thanks in advance</p> http://stackoverflow.com/questions/1077579/getting-lastaccesstime-with-delphi/1077621#1077621 1 Answer by gcahill for Getting LastAccessTime with Delphi gcahill 2009-07-03T03:05:51Z 2009-07-03T03:05:51Z <p>Typical, 20 minutes after making my first post I solve my own problem.</p> <p>The author to the linked code avbove had two versions of the same code the second one is posted here <a href="http://www.latiumsoftware.com/en/delphi/00051.php" rel="nofollow">http://www.latiumsoftware.com/en/delphi/00051.php</a></p> <p>Problem solved! - I reckon the DOS library's interpretation of the Win32 timestamps was incorrect and that carried over into the code that followed. Maybe not? i will investigate futher if time allows.</p> http://stackoverflow.com/questions/1077579/getting-lastaccesstime-with-delphi/1077745#1077745 2 Answer by Loren Pechtel for Getting LastAccessTime with Delphi Loren Pechtel 2009-07-03T04:19:50Z 2009-07-03T04:19:50Z <p>The timestamps are in UTC, not local time.</p> http://stackoverflow.com/questions/1077579/getting-lastaccesstime-with-delphi/1078052#1078052 4 Answer by gabr for Getting LastAccessTime with Delphi gabr 2009-07-03T06:50:26Z 2009-07-03T06:50:26Z <p>"As usual" ;-) I'll point to the <a href="http://gp.17slon.com/gp/dsiwin32.htm" rel="nofollow">DSiWin32</a> which includes function DSiGetFileTimes which returns creation time, last access time and last modification time.</p> <pre><code>function DSiFileTimeToDateTime(fileTime: TFileTime; var dateTime: TDateTime): boolean; var sysTime: TSystemTime; begin Result := FileTimeToSystemTime(fileTime, sysTime); if Result then dateTime := SystemTimeToDateTime(sysTime); end; { DSiFileTimeToDateTime } function DSiGetFileTimes(const fileName: string; var creationTime, lastAccessTime, lastModificationTime: TDateTime): boolean; var fileHandle : cardinal; fsCreationTime : TFileTime; fsLastAccessTime : TFileTime; fsLastModificationTime: TFileTime; begin Result := false; fileHandle := CreateFile(PChar(fileName), GENERIC_READ, FILE_SHARE_READ, nil, OPEN_EXISTING, 0, 0); if fileHandle &lt;&gt; INVALID_HANDLE_VALUE then try Result := GetFileTime(fileHandle, @fsCreationTime, @fsLastAccessTime, @fsLastModificationTime) and DSiFileTimeToDateTime(fsCreationTime, creationTime) and DSiFileTimeToDateTime(fsLastAccessTime, lastAccessTime) and DSiFileTimeToDateTime(fsLastModificationTime, lastModificationTime); finally CloseHandle(fileHandle); end; end; { DSiGetFileTimes } </code></pre>