(这里是新手)。
尝试获取文件的最后 access_time 和 creation_time 。我已经找到了如何获得修改时间的方法。
File.info("foo").modification_time
但是找不到其他两个东西。 (使用最新的0.28)在OSX High Sierra上。
答案 0 :(得分:1)
好像曾经是File.stat("foo").atime
和File.stat("foo").ctime
(请参阅here和here)。
由于可移植性原因,似乎已将其删除,请参见this PR comment。