check_and_create_file_parent_dir

def check_and_create_file_parent_dir(file_path,):

    print(file_path)
    directory = os.path.dirname(file_path)  # 获取文件所在的目录
    if not os.path.exists(directory):
        os.makedirs(directory)  # 创建目录

你可能感兴趣的:(python,python)