Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

.Net File.GetLastAccessTime updates Last Access Time of file

We are using below line to get Last access date and time of the file.

DateTime dtLastAccesstime = File.GetLastAccessTime(sFilePath);

But we are facing strange problem, the above call itself modifies the Last access time. So effectively we are getting current time as last access time.

like image 946
SantoshTupe Avatar asked Nov 29 '11 14:11

SantoshTupe


1 Answers

You may find this post useful, in particular:

Starting in Windows Vista, maintaining the last-access time is disabled by default.

Which means that nowadays most operating systems won't maintain the last access time (which I suppose could account for the odd behaviour you are seeing).

Even if this is not the case this post highlights some of the many scenarios whereby the last access time could have been updated when you didn't mean to - can you be sure that your application doesn't perform any other file access?

like image 129
Justin Avatar answered Oct 19 '22 18:10

Justin