What is the function to get date and time an application was executed? I'm using Delphi.
|
|
You can use the Windows API call to GetProcessTimes (declared in Windows.pas) to get details for any process. If it's your application, I would probably get the start time myself and log it somewhere to keep a history. |
|||||||
|
|
I'm not sure if there's a function or API call for this. But you can fake it pretty easily. Create a unit that looks like this:
Add it to your DPR's uses list, at the top, either first or immediately after anything that "must be first on the list", such as a custom memory manager. |
|||||||||
|
|
Use NtQuerySystemInformation with the SystemProcessInformation informationclass, this returns an array of SYSTEM_PROCESSES structures (records) of which the CreateTime contains the exact time when the applications was started:
We have already translated all of this in the Jedi Apilib (JwaNative) |
|||||
|
|
You can have your app log the startup time to a text file or database either in the DPR file or in your main form's OnCreate() event. You can use Delphi's Now() function to get the current date and time, and format it as a string using FormatDateTime() or DateTimeToStr(), depending on what exactly you're looking to do. The code below saves the startup date and time during the main form's constructor to a text file in the same folder as the application itself called StartDateTime.txt:
|
|||||||||||
|