python判断文件夹是否存在,不存在则创建 作者: 热心网友 发布: 2022年5月26日 802阅读 0评论 import os def create_dir_not_exist(path): if not os.path.exists(path): os.mkdir(path)