Feb 19, 2003 #1 TedMcCoin Programmer Feb 19, 2003 14 DE How to find out the modification date and time of any file ? What piece of code would do that ? Any idea would be very appreciated, thanks, erik
How to find out the modification date and time of any file ? What piece of code would do that ? Any idea would be very appreciated, thanks, erik
Feb 19, 2003 #2 robsuttonjr MIS Sep 17, 2001 673 US First create an array with files you want date for or just one filename: ADIR(aTest,"c:\*.*" Then display the array value for the last modified date: ?aTest(1,3) Upvote 0 Downvote
First create an array with files you want date for or just one filename: ADIR(aTest,"c:\*.*" Then display the array value for the last modified date: ?aTest(1,3)
Feb 19, 2003 #3 robsuttonjr MIS Sep 17, 2001 673 US For the last modified time use: ?aTest(1,4) Upvote 0 Downvote
Feb 20, 2003 Thread starter #4 TedMcCoin Programmer Feb 19, 2003 14 DE That was exactly what i was looking for ! thanks a lot for your help, erik Upvote 0 Downvote
Feb 20, 2003 #5 AllanB1 Programmer Dec 30, 2002 201 US Another way: =FDATE(Filename) =FTIME(Filename) aL Upvote 0 Downvote