美文网首页生活不易 我用python
说说在 Python 中如何递归创建不存在的文件夹路径

说说在 Python 中如何递归创建不存在的文件夹路径

作者: deniro | 来源:发表于2020-10-24 08:31 被阅读0次

    代码模板如下所示:

    
    import os
    
    if not os.path.exists(path):
      os.makedirs(path)
    
    
    1. 首先先引入 os,os 是 operating system(操作系统)的缩写。
    2. 接着使用 os.path.exists(path) 判定 path 路径是否存在。如果存在则返回 True。
    3. 最后使用 os.makedirs(path) 方法,它可以递归创建指定路径下的文件夹。如果文件夹创建失败或者已经存在,会抛出 OSError 异常。所以在调用 makedirs() 方法之前,需先调用 os.path.exists(path) 判定目录是否存在。

    如果第一个参数 path 只有一级,则作用与 mkdir() 函数相同。

    相关文章

      网友评论

        本文标题:说说在 Python 中如何递归创建不存在的文件夹路径

        本文链接:https://www.haomeiwen.com/subject/xuakpktx.html