检查文件是否存在,如果不存在则创建它

这个问题在这里已经有了答案:

  • 如何检查文件是否存在? 39个答案

  • 你可以使用os.path.exists("schedule.dat") 。 它返回一个布尔结果。

    另一种使用os.stat解决方案涉及:

    import os
    try:
        os.stat("schedule.dat")
        ... # file exists
    except:
        file = open("schedule.dat", "w")
        ...
    

    引发异常是您尝试stat一个不存在的文件。

    链接地址: http://www.djcxy.com/p/7307.html

    上一篇: 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?