摘要: import os def del_path(path): if not os.path.exists(path): return if os.path.isfile(path): os.remove(path) print 'delete file %s' % path else: items = os.... 阅读全文
posted @ 2019-03-08 13:29 嘿.嘿.嘿 阅读(1365) 评论(0) 推荐(0)