os.mkdir(path) returns OSError when directory does not exist

后端 未结 10 2279
挽巷
挽巷 2020-12-08 09:54

I am calling os.mkdir to create a folder with a certain set of generated data. However, even though the path I specified has not been created, the os.mkdi

10条回答
  •  暗喜
    暗喜 (楼主)
    2020-12-08 10:17

    Greg's answer is correct but doesn't go far enough. OSError has sub-error conditions, and you don't want to suppress them all every time. It's prudent to trap just expected OS errors.

    Do additional checking before you decide to suppress the exception, like this:

    import errno
    import os
    
    try:
        os.mkdir(dirname)
    except OSError as exc:
        if exc.errno != errno.EEXIST:
            raise
        pass
    

    You probably don't want to suppress errno.EACCES (Permission denied), errno.ENOSPC (No space left on device), errno.EROFS (Read-only file system) etc. Or maybe you do want to -- but that needs to be a conscious decision based on the specific logic of what you're building.

    Greg's code suppresses all OS errors; that's unsafe just like except Exception is unsafe.

提交回复
热议问题