摘要: 判断文件路径不存在创建文件路径 if not osp.exists(path): os.makedirs(path) 去除字符串非法字符,防止创建文件夹报错 #去掉非法字符 pitow = re.sub('[\/:*?"<>|]','-',name) 阅读全文
posted @ 2023-04-19 20:21 脆 阅读(9) 评论(0) 推荐(0) 编辑