Apr 12, 2004 #1 tbarone Programmer Aug 1, 2001 13 US I do not quite understand the Get attributes command in Delphi. How do I get the last date modified from a file and bring it into Delphi? Thanks, Tony
I do not quite understand the Get attributes command in Delphi. How do I get the last date modified from a file and bring it into Delphi? Thanks, Tony
Apr 12, 2004 #2 hilfy Active member Oct 31, 2003 2,564 US Try using the FileAge and FileDateToDateTime functions: FileDate := FileDateToDateTime(FileAge('C:\MyFile.txt')); -D Upvote 0 Downvote
Try using the FileAge and FileDateToDateTime functions: FileDate := FileDateToDateTime(FileAge('C:\MyFile.txt')); -D