文章详情页
Python怎么实现文件夹内多txt合并?
浏览:185日期:2022-07-13 13:53:33
问题描述
读取文件夹内一个txt文件记录txt文件名(用户ID)写入到一个新的txt文件内原txt文件删掉以上步骤循环txt文件按内容里时间排序每条日志开头添加 用户ID + 原内容
问题解答
回答1:python2.7语法, py3请自行相应改下
import globimport ossrc_dir = ’/root/*.txt’ # 利用通配符查找后缀名为txt的文件dest_file = ’result.txt’with open(dest_file, ’w’) as f_w: for file_name in glob.glob(src_dir):with open(file_name) as f_r: for line in f_r:f_w.write(’%s %s’ % (file_name, line))os.remove(file_name)
相关文章:
排行榜

网公网安备