AI智能问答-学无止境 python python判断文件夹是否存在,不存在则创建

python判断文件夹是否存在,不存在则创建

import os
def create_dir_not_exist(path):
    if not os.path.exists(path):
        os.mkdir(path)
上一篇
下一篇

发表回复

返回顶部