What is the access time in Unix

后端 未结 4 1347
天命终不由人
天命终不由人 2021-02-02 15:37

I want to know what access time is. I searched in the web but got the same definition:

read - gets changed

I know with touch

4条回答
  •  陌清茗
    陌清茗 (楼主)
    2021-02-02 16:34

    Last access time

    • Time when file data last accessed.
    • Changed by the mknod(2), utimes(2) and read(2) system calls.

    Last modified time

    • Time when file data last modified.
    • Changed by the mknod(2), utimes(2) and write(2) system calls.

    Last changed time

    • Time when file status was last changed (inode data modification).
    • Changed by the chmod(2), chown(2), link(2), mknod(2), rename(2), unlink(2), utimes(2) and write(2) system calls.

提交回复
热议问题