21
2
In Windows, you can disable the last accessed timestamp by setting NtfsDisableLastAccessUpdate to 1, for instance by executing this from the command line (the computer must be restarted before it takes effect):
fsutil behavior set disablelastaccess 1
I want to do so there is less disk activity on c:\$logfile
.
Might this cause any negative effects or problems?
It could mess up programs that sync files (i.e. dropbox) – user2813274 – 2015-01-20T18:40:59.797
Starting with Windows Vista, last access timestamping is disabled by default (archive) – Ian Boyd – 2018-04-19T15:08:43.350
Related discussion for Linux: https://en.wikipedia.org/w/index.php?title=Stat_%28system_call%29&oldid=511345005#Criticism_of_atime
– Mechanical snail – 2012-09-08T08:25:37.863