码迷,mamicode.com
首页 > 其他好文 > 详细

如何取得文件的创建时间?

时间:2014-08-13 18:07:26      阅读:139      评论:0      收藏:0      [点我收藏+]

标签:style   color   io   文件   ar   cti   时间   res   

uses

  SysUtils

function GetFileDateTime(FileName: string): TDateTime;
var

  intFileAge: LongInt;

begin
    intFileAge := FileAge(FileName);
    if intFileAge = -1 then
      Result := 0
    else
      Result := FileDateToDateTime(intFileAge)
end;

如何取得文件的创建时间?,布布扣,bubuko.com

如何取得文件的创建时间?

标签:style   color   io   文件   ar   cti   时间   res   

原文地址:http://www.cnblogs.com/sensor/p/3910350.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!