赞
踩
os
模块里的 path.exists
函数来判断路径文件夹是否存在。写法:os.path.exists
要是没安装os库,使用pip install os
在安装在命令窗口输入命令:pip install os 回车
- import os
-
- path = r'/path/ts'
- if not os.path.exists(path):
- os.makedirs(path)
'运行
这段代码会检查 /path/ts
路径是否存在,如果不存在,就使用 os.makedirs
函数新建该路径。注意,如果路径的父目录不存在,os.makedirs
函数会递归地创建所有父目录。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。