1. 判断是否存在某个文件夹(path)函数:
函数:
def check_mkdir(dir_name):
if not os.path.exists(dir_name):
os.makedirs(dir_name)
判断语句:
check_mkdir(path)
2.判断是否存在某个文件夹(path):是则跳过,否则创建这个文件夹
os.makedirs(path, exist_ok=True)
1. 判断是否存在某个文件夹(path)函数:
函数:
def check_mkdir(dir_name):
if not os.path.exists(dir_name):
os.makedirs(dir_name)
判断语句:
check_mkdir(path)
2.判断是否存在某个文件夹(path):是则跳过,否则创建这个文件夹
os.makedirs(path, exist_ok=True)