标题-文件检查python脚本 在python中,我怎么能知道文件夹中是否存在今天的文件,如果文件不存在,则获取昨天的文件
答案 0 :(得分:2)
您可以使用Python的简单错误处理来做到这一点:
try:
open('directory/name_of_todays_file', 'r')
print('todays file exists')
except:
open('directory/name_of_yesterdays_file', 'r')
print('todays file does not exist')