此问题已在此处有答案:
How do I check whether a file exists without exceptions?(40答案)
3年前关闭。
我正试图使一个Python脚本,使条目在Excel文件,将有每日条目。我想检查一个文件是否存在,然后打开它。如果文件不存在,我想创建一个新文件。
如果已使用的os路径存在,以查看文件是否存在
workbook_status = os.path.exists("/log/"+workbookname+".xlxs")
if workbook_status = "True":
# i want to open the file
Else:
#i want to create a new file
3条答案
按热度按时间zpgglvta1#
我想你正需要那个
如果你想用if-else检查,而不是这样做:
或
l3zydbqr2#
6yoyoihd3#
您应该使用以下语句: