python 有哪些方法可以获取到文件的创建时间

import os
import datetime
...
datetime.datetime.fromtimestamp(os.path.getctime(fn))
...
os.rename(old,new)
f = open(old,'a')
...
f.close()

大体代码如上,要实现的效果是当日志创建文件早于一定天数就给日志改名,然后创建新的日志。
现在遇到个问题:

当编写完代码直接运行时,读取文件创建日期时,改名后创建的新文件读出的是老的文件的创建日期。
之后排查问题的时候用pycharm进行代码断点跟踪,刷新目录后读到的创建日期又变成正常的当前日期了。
再之后运行代码也没出现问题。

请问这个是什么原因造成的?或者有什么好的替代方案实现我的需求来规避这种可能出现的异常?

阅读 4.7k
1 个回答
In [3]: os.stat('./sendmail.py')
Out[3]: posix.stat_result(st_mode=33204, st_ino=313029, st_dev=64769L, st_nlink=1, st_uid=500, st_gid=500, st_size=635, st_atime=1480821883, st_mtime=1480821926, st_ctime=1480821926)

st_ctime

import os
def get_create_time(filename):
    return os.stat(filename).st_ctime

update
文档

os.stat(path) 
Perform the equivalent of a stat() system call on the given path. (This function follows symlinks; to stat a symlink use lstat().)

The return value is an object whose attributes correspond to the members of the stat structure, namely:

st_mode - protection bits, 
st_ino - inode number, 
st_dev - device, 
st_nlink - number of hard links, 
st_uid - user id of owner, 
st_gid - group id of owner, 
st_size - size of file, in bytes, 
st_atime - time of most recent access, 
st_mtime - time of most recent content modification, 
st_ctime - platform dependent; time of most recent metadata change on Unix, or the time of creation on Windows) 

可见st_ctime确实可做为created_time, 修改时间取st_mtime

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题
宣传栏