gpt4 book ai didi

python - 获取文件修改日期?

转载 作者:IT老高 更新时间:2023-10-28 21:17:50 27 4
gpt4 key购买 nike

如果文件存在,我使用以下代码获取文件的修改日期:

if os.path.isfile(file_name):
last_modified_date = datetime.fromtimestamp(os.path.getmtime(file_name))
else:
last_modified_date = datetime.fromtimestamp(0)

有没有更优雅/更简洁的方式?

最佳答案

你可以使用异常处理;无需先测试文件是否存在,如果不存在则捕获异常:

try:
mtime = os.path.getmtime(file_name)
except OSError:
mtime = 0
last_modified_date = datetime.fromtimestamp(mtime)

这是请求宽恕而不是许可。

关于python - 获取文件修改日期?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27580917/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com