我使用以下代码获取文件的修改日期(如果存在):
if os.path.isfile(file_name):
last_modified_date = datetime.fromtimestamp(os.path.getmtime(file_name))
else:
last_modified_date = datetime.fromtimestamp(0)
是否有更优雅/短暂的方式?
答案 0 :(得分:30)
您可以使用异常处理;不需要先测试文件是否存在,只要不是这样就捕获异常:
try:
mtime = os.path.getmtime(file_name)
except OSError:
mtime = 0
last_modified_date = datetime.fromtimestamp(mtime)
这是要求宽恕而不是许可。