python当中删除文件的几种方法
摘要:
python当中运用os,shutil来实现对文件和文件夹的删除操作。 方法一: import os,shutil def del_file0(path): shutil.rmtree(path) del_file0(r"C:\Users\1\Desktop\me") 这种方法,删除一个文件夹,无论 阅读全文
posted @ 2022-10-17 21:45 一先生94 阅读(4334) 评论(0) 推荐(2) 编辑