代码模板如下所示:
import os
if not os.path.exists(path):
os.makedirs(path)
- 首先先引入 os,os 是 operating system(操作系统)的缩写。
- 接着使用 os.path.exists(path) 判定 path 路径是否存在。如果存在则返回 True。
- 最后使用 os.makedirs(path) 方法,它可以递归创建指定路径下的文件夹。如果文件夹创建失败或者已经存在,会抛出 OSError 异常。所以在调用 makedirs() 方法之前,需先调用 os.path.exists(path) 判定目录是否存在。
如果第一个参数 path 只有一级,则作用与 mkdir() 函数相同。
网友评论