我想获取上次访问文件的时间,我尝试了以下代码:
import os, time
os.system("python test.py")
print os.stat('test.py').st_atime
time.sleep(60)
os.system("python test.py")
print os.stat('test.py').st_atime
但每次输出都如下所示:
1358489344.72
1358489344.72
我期待延迟之前和延迟之后的输出有所不同。每次运行代码时,输出也相同。
有什么问题?