获取今天文件的脚本是否存在,如果不存在,则删除昨天文件

时间:2018-11-16 07:46:33

标签: python python-3.x

标题-文件检查python脚本 在python中,我怎么能知道文件夹中是否存在今天的文件,如果文件不存在,则获取昨天的文件

1 个答案:

答案 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')