Na początku utworzymy odpowiednią funkcję, która będzie zwracać obiekt klasy TDateTime, a nastepnie przy pomocy FormatDateTime wyświetlimy datę na ekranie. Oto kod:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 |
function GetFileModifyDate(FileName: string): TDateTime; var h: THandle; Struct: TOFSTRUCT; lastwrite: Integer; t: TDateTime; begin h := OpenFile(PChar(FileName), Struct, OF_SHARE_DENY_NONE); try if h <> HFILE_ERROR then begin lastwrite := FileGetDate(h); Result := FileDateToDateTime(lastwrite); end; finally CloseHandle(h); end; end; procedure TForm1.Button1Click(Sender: TObject); begin if Opendialog1.Execute then label1.Caption := FormatDateTime('dddd, d. mmmm yyyy hh:mm:ss', GetFileModifyDate(Opendialog1.FileName)); end; |
Autor: Nakiel