gpt4 book ai didi

windows - 如何使文件的创建、访问和修改日期与 Windows 属性相同?

转载 作者:可可西里 更新时间:2023-11-01 12:33:36 27 4
gpt4 key购买 nike

我正在尝试获取与 Windows 属性中显示的相同的创建日期、访问日期和修改日期:

File Properties

但我发现时间总是晚 30 分钟:

File Properties Delphi

相信它可能与时区/夏令时有关,但一直无法找到解决方案。试过看: TimeZone Bias 以及调整和查看不同的方法,包括: How to get create/last modified dates of a file in Delphi?

当前代码:

var
MyFd TWin32FindData;
FName: string;
MyTime: TFileTime;
MySysTime: TSystemTime;
myDate, CreateTime, AccessTime, ModTime: TDateTime;
Begin
...
FindFirstFile(PChar(FName), MyFd);
MyTime:=MyFd.ftCreationTime;
FileTimeToSystemTime(MyTime, MySysTime);
myDate := EncodeDateTime(MySysTime.wYear, MySysTime.wMonth, MySysTime.wDay, MySysTime.wHour,
MySysTime.wMinute, MySysTime.wSecond, MySysTime.wMilliseconds);
Memo1.Lines.Add('Created: '+ FormatDateTime('dddd, d mmmm yyyy, hh:mm:ss ampm', MyDate));
...

感谢任何帮助

谢谢保罗

最佳答案

我不确定您当前的代码有什么问题,但我相信这段代码会使用标准的 Windows API 调用来满足您的需求。

procedure TMyForm.ReportFileTimes(const FileName: string);

procedure ReportTime(const Name: string; const FileTime: TFileTime);
var
SystemTime, LocalTime: TSystemTime;
begin
if not FileTimeToSystemTime(FileTime, SystemTime) then
RaiseLastOSError;
if not SystemTimeToTzSpecificLocalTime(nil, SystemTime, LocalTime) then
RaiseLastOSError;
Memo1.Lines.Add(Name + ': ' + DateTimeToStr(SystemTimeToDateTime(LocalTime)));
end;

var
fad: TWin32FileAttributeData;

begin
if not GetFileAttributesEx(PChar(FileName), GetFileExInfoStandard, @fad) then
RaiseLastOSError;
Memo1.Clear;
Memo1.Lines.Add(FileName);
ReportTime('Created', fad.ftCreationTime);
ReportTime('Modified', fad.ftLastWriteTime);
ReportTime('Accessed', fad.ftLastAccessTime);
end;

procedure TMyForm.Button1Click(Sender: TObject);
begin
ReportFileTimes(Edit1.Text);
end;

关于windows - 如何使文件的创建、访问和修改日期与 Windows 属性相同?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9209394/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com