获取文件修改日期? [复制]
Posted
技术标签:
【中文标题】获取文件修改日期? [复制]【英文标题】:Get file modification date? [duplicate] 【发布时间】:2015-02-19 06:24:45 【问题描述】:如果文件存在,我使用以下代码获取文件的修改日期:
if os.path.isfile(file_name):
last_modified_date = datetime.fromtimestamp(os.path.getmtime(file_name))
else:
last_modified_date = datetime.fromtimestamp(0)
有没有更优雅/更简洁的方式?
【问题讨论】:
我相信这回答了你的问题。 ***.com/questions/237079/… 【参考方案1】:你可以使用异常处理;无需先测试文件是否存在,如果不存在则捕获异常:
try:
mtime = os.path.getmtime(file_name)
except OSError:
mtime = 0
last_modified_date = datetime.fromtimestamp(mtime)
这是请求宽恕而不是许可。
【讨论】:
以上是关于获取文件修改日期? [复制]的主要内容,如果未能解决你的问题,请参考以下文章