Вниз
Скачать: CL | DM;

Дата Время создания файла   Найти похожие ветки 

 
Max4   (2006-05-02 12:31) [0]

Собственно, помогите с сабжем пжалста.
Как программно узнать сабж ?


 
begin...end ©   (2006-05-02 13:01) [1]

GetFileTime


 
ORMADA ©   (2006-05-03 11:04) [2]


function GetFileTimeStamp(AFileName: string): string;
var
 FileTime, LocalFileTime               : TFileTime;
 SystemTime                            : TSystemTime;
 hFile                                 : THandle;
 FileName                              : string;
begin
 FileName := AFileName;
 Result := "";
 hFile := FileOpen(FileName, fmShareDenyNone);
 try
   GetFileTime(hFile, nil, nil, @FileTime); // - дата изменения
   FileTimeToLocalFileTime(FileTime, LocalFileTime);
   if FileTimeToSystemTime(LocalFileTime, SystemTime) then
     Result := DateTimeToStr(SystemTimeToDateTime(SystemTime));
 finally
   FileClose(hFile);
 end;
end;



Страницы: 1 вся ветка

Скачать: CL | DM;



Память: 0.45 MB
Время: 0.031 c
15-1145709316
ArtemESC
2006-04-22 16:35
2006.05.21
Счетчик времени на сайте...


3-1143045559
Morrison
2006-03-22 19:39
2006.05.21
Таблица не открывается: Corrupt table / index header


8-1135358895
Gorger
2005-12-23 20:28
2006.05.21
Почему не работает CreatePolygonRgn?


15-1145643429
Kerk
2006-04-21 22:17
2006.05.21
Google Romance


2-1146245403
Mark86rus
2006-04-28 21:30
2006.05.21
как в строке отрезать последние три символа?




   Наверх