dousuo8400 2011-11-28 09:57
浏览 292
已采纳

如何在Go中获取文件的最后访问日期和时间?

Does anyone know how to check for a file access date and time? The function returns the modified date and time and I need something that compares the accessed date time to the current date and time.

  • 写回答

3条回答 默认 最新

  • dongza1708 2011-11-28 10:07
    关注

    You can use os.Stat to get a FileInfo struct which also contains the last access time (as well as the last modified and the last status change time).

    info, err := os.Stat("example.txt")
    if err != nil {
         // TODO: handle errors (e.g. file not found)
    }
    // info.Atime_ns now contains the last access time
    // (in nanoseconds since the unix epoch)
    

    After that, you can use time.Nanoseconds to get the current time (also in nanoseconds since the unix epoch, January 1, 1970 00:00:00 UTC). To get the duration in nanoseconds, just subtract those two values:

    duration := time.Nanoseconds() - info.Atime_ns
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?

悬赏问题

  • ¥15 求解O-S方程的特征值问题给出边界层布拉休斯平行流的中性曲线
  • ¥15 谁有desed数据集呀
  • ¥20 手写数字识别运行c仿真时,程序报错错误代码sim211-100
  • ¥15 关于#hadoop#的问题
  • ¥15 (标签-Python|关键词-socket)
  • ¥15 keil里为什么main.c定义的函数在it.c调用不了
  • ¥50 切换TabTip键盘的输入法
  • ¥15 可否在不同线程中调用封装数据库操作的类
  • ¥15 微带串馈天线阵列每个阵元宽度计算
  • ¥15 keil的map文件中Image component sizes各项意思