摘要: import os L=[] def delete_file(file): if os.path.isdir(file): files=os.listdir(file) for x in files: x=os.path.join(file,x) if os.path.isfile(x): prin 阅读全文
posted @ 2021-05-08 00:47 食蚁兽 阅读(34) 评论(2) 推荐(0) 编辑