摘要: import os txt_path = 't1.txt' f = open(txt_path, mode='a', encoding='utf-8') def all_path(dirname): result = [] for maindir, subdir, file_name_list in os.walk(dirname): for filename... 阅读全文
posted @ 2018-10-22 09:48 xiaodebing 阅读(119) 评论(0) 推荐(0) 编辑