2017年10月20日

删除/tmp目录下txt文件

摘要: #!/usr/bin/env python # -*- coding: utf-8 -*- import os def del_file(path): for root,dirs,files in os.walk(path): for name in files: if name.endswith(".txt"): ... 阅读全文

posted @ 2017-10-20 14:40 裤裆内隐藏杀气 阅读(264) 评论(0) 推荐(0) 编辑

导航