1
Mac OS X中是否未正确维护文件访问时间?
我正在尝试确定默认情况下Mac OS X中文件访问时间是如何维护的,因为我正在尝试诊断我在新的MBP Unibody(运行Snow Leopard,10.6.2)中看到的一些奇怪的行为: 症状(深入到导致问题的特定行为): mutt无法切换到最近收到新邮件的邮箱 邮件由procmail提供,它更新正在更新的mbox文件夹的mtime,但不会改变atime(这是新邮件检测的工作原理:通过比较atime和mtime) 但是,mbox文件的mtime和atime都会更新 通过测试,似乎无法atimes在文件系统中单独设置: : [ether@tequila ~]$; touch test : [ether@tequila ~]$; touch -m -t 200801010000 test2 : [ether@tequila ~]$; touch -a -t 200801010000 test3 : [ether@tequila ~]$; ls -l test* -rw------- 1 ether staff 0 Dec 30 11:42 test -rw------- 1 ether staff …