python os模块atime ,ctime,mtime意义

Posted 一个学者

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python os模块atime ,ctime,mtime意义相关的知识,希望对你有一定的参考价值。

ython的os.stat中主要的时间信息有三个:st_mtime,st_atime,st_ctime。

  1、st_mtime:time of last modification
     最后一次修改时间,如果使用write函数写某个文件,会改变文件的这个时间
  2、st_atime:time of last access
     最后一次访问时间,如果使用read函数读某个文件,会改变文件的这个时间
  3、st_ctime:time of last change
     最后一次修改文件权限时间,如果使用chmod修改了文件的权限,会改变这个时间

以上是关于python os模块atime ,ctime,mtime意义的主要内容,如果未能解决你的问题,请参考以下文章

python time 模块

python查询文件信息

python查询文件信息

mtime,ctime,atime

ctime,atime,mtime

python小总结2(time,os)