Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What is the function to get date and time an application was executed? I'm using Delphi.

share|improve this question
What "startup time"? Can you be more specific? Are you looking for how long your application takes to start? Or what time of day it was started? – Ken White Nov 12 '09 at 20:50
1  
yeah, the time of day it was started. – Peter Turner Nov 12 '09 at 20:53
1  
Peter, your question isn't really specific to Delphi, and neither are the answers, so I've changed the question so non-Delphi programmers will be less likely to dismiss it as irrelevant when they have a similar question. – Rob Kennedy Nov 13 '09 at 6:38
Rob, I was kind of hoping that the question would be specific to Delphi. I was hoping there was something like Application.GetUpTime(). GetProcessTimes is a pretty cryptic function which in order to convert to TDateTime needs to use FileTimeToSystemTime and SystemTimeToDateTime. But, it is what it is eh? – Peter Turner Nov 13 '09 at 14:10

4 Answers

up vote 14 down vote accepted

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.

share|improve this answer
+1 for GetProcessTimes – RRUZ Nov 12 '09 at 22:33
2  
And the simplest way to use it is DSiGetProcessTimes from DSiWin32, gp.17slon.com/gp/dsiwin32.htm. – gabr Nov 13 '09 at 6:55

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:

unit AppStartTime;

interface

function GetAppStartTime: TDateTime;

implementation
uses
  SysUtils;

var
  fStartTime: TDateTime;

function GetAppStartTime: TDateTime;
begin
  result := fStartTime;
end;

initialization
  fStartTime := Now;

end.

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.

share|improve this answer
1  
If you want to be really accurate, and your application has a long start up, then put this unit as the first in your uses clause. – Jim McKeeth Nov 12 '09 at 21:23
1  
If you want to be really accurate you need to use GetProcessTimes(), as even the code in the initialization of the very first unit will be executed only after all modules have been loaded and all module entry points have been resolved, which can take quite a lot of time with low I/O bandwidth and nothing preloaded or cached. – mghie Nov 12 '09 at 22:02

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:

  _SYSTEM_PROCESSES = record // Information Class 5
    NextEntryDelta: ULONG;
    ThreadCount: ULONG;
    Reserved1: array[0..5] of ULONG;
    CreateTime: LARGE_INTEGER;
    UserTime: LARGE_INTEGER;
    KernelTime: LARGE_INTEGER;
    ProcessName: UNICODE_STRING;
    BasePriority: KPRIORITY;
    ProcessId: ULONG;
    InheritedFromProcessId: ULONG;
    HandleCount: ULONG;
    // next two were Reserved2: array [0..1] of ULONG; thanks to Nico Bendlin
    SessionId: ULONG;
    Reserved2: ULONG;
    VmCounters: VM_COUNTERS;
    PrivatePageCount: ULONG;
    IoCounters: IO_COUNTERSEX; // Windows 2000 only
    Threads: array[0..0] of SYSTEM_THREADS;
  end;
  SYSTEM_PROCESSES = _SYSTEM_PROCESSES;
  PSYSTEM_PROCESSES = ^SYSTEM_PROCESSES;
  TSystemProcesses = SYSTEM_PROCESSES;
  PSystemProcesses = PSYSTEM_PROCESSES;

We have already translated all of this in the Jedi Apilib (JwaNative)

share|improve this answer
That's not the structure documented on MSDN, so I'd hesitate to trust its accuracy. – Rob Kennedy Nov 13 '09 at 15:45
Well Microsoft has kept this function undocumented and now they are partly documented. The structure has been reversed a very long time ago though so I think it's very well safe to use. – Remko Nov 13 '09 at 16:20

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:

procedure TForm1.FormCreate(Sender: TObject);
var
  SL: TStringList;
begin
  SL := TStringList.Create;
  try
    SL.Add(FormatDateTime('mm/dd/yyyy hh:nn:ss', Now());
    SL.SaveToFile(ExtractFilePath(ParamStr(0)) + 'StartDateTime.txt');
  finally
    SL.Free;
  end;
end;
share|improve this answer
Does your answer contradict Bruces? – Peter Turner Nov 12 '09 at 21:26
Peter. No. His answer is close to the second part of my answer, except Ken posted his first and included source code. If that's the way you choose to go, you should select Ken's answer as the correct one. – Bruce McGee Nov 12 '09 at 23:39
I'd still prefer the first sentence of the answer to be removed - it is clearly wrong. – mghie Nov 13 '09 at 5:30
@mghie: Done. I missed GetProcessTimes(). Mea culpa. – Ken White Nov 13 '09 at 13:25
@Bruce: Actually, yours is the better answer. Mine is only better on versions of Windows prior to GetProcessTimes() being available. :-) – Ken White Nov 13 '09 at 13:27
show 3 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.