吾爱破解 - 52pojie.cn

 找回密码
 注册[Register]

QQ登录

只需一步,快速开始

查看: 849|回复: 2
收起左侧

[求助] 不喜欢这种错位的表现形式:

[复制链接]
冥界3大法王 发表于 2023-1-19 10:17
[Delphi] 纯文本查看 复制代码
procedure TForm8.N21Click(Sender: TObject);   //获取文件最后修改时间

  procedure DirectoryDateTimeInfo(const path: string);
  var
    sr: TSearchRec;
    modifiedTime: TDateTime; // 修改时间
  begin
    if FindFirst(path, faDirectory, sr) = 0 then
      modifiedTime := FileDateToDateTime(sr.Time); // 修改时间
    ShowMessage(Format('最后修改时间:"%s"', [DateTimeToStr(modifiedTime)]));
    FindClose(sr);
  end;

begin
  DirectoryDateTimeInfo('C:\Windows\System32\notepad.exe');
end;


能改的简单些吗?

发帖前要善用论坛搜索功能,那里可能会有你要找的答案或者已经有人发布过相同内容了,请勿重复发帖。

侃遍天下无二人 发表于 2023-1-30 15:23
我也不喜欢,复制粘贴很容易出问题,错位了逻辑就变了
dong555 发表于 2023-1-31 11:14
delphi中我是不喜欢这种在函数、方法中继续写个函数、方法进去,还不如写在外面在调用,也不至于看了比较混乱
您需要登录后才可以回帖 登录 | 注册[Register]

本版积分规则

返回列表

RSS订阅|小黑屋|处罚记录|联系我们|吾爱破解 - LCG - LSG ( 京ICP备16042023号 | 京公网安备 11010502030087号 )

GMT+8, 2024-11-25 01:58

Powered by Discuz!

Copyright © 2001-2020, Tencent Cloud.

快速回复 返回顶部 返回列表