非常感谢.解决方法 从SysUtils单元尝试
SysUtils.FileSetDate
函数,该函数在内部调用SetfileTime WinAPI函数. 这个功能有两个版本
function fileSetDate(const filename: string; Age: Integer): Integer;function fileSetDate(Handle: THandle; Age: Integer): Integer;
Age参数是要设置的时间.您必须使用DateTimeToFileDate
将TDateTime值转换为windows *** 作系统时间戳.
像这样
fileSetDate(filename,DateTimetofileDate(Now));总结
以上是内存溢出为你收集整理的delphi – 我可以设置创建/上次修改/上次访问文件的内容?全部内容,希望文章能够帮你解决delphi – 我可以设置创建/上次修改/上次访问文件的内容?所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)