检查文件是否存在,如果不存在则创建它
这个问题在这里已经有了答案:
你可以使用os.path.exists("schedule.dat")
。 它返回一个布尔结果。
另一种使用os.stat
解决方案涉及:
import os
try:
os.stat("schedule.dat")
... # file exists
except:
file = open("schedule.dat", "w")
...
引发异常是您尝试stat
一个不存在的文件。
上一篇: Check to see if a file exists, and create it if it doesn't
下一篇: How to check if command line argument is file or not in python?