Python合并多个txt文件

时间:2012-11-23 09:08:15

标签: python text merge

我尝试使用此代码合并文件夹中的多个TXT文件,但它无效:

import os,shutil
path = "C:/Users/user/Documents/MergeFolder"
f=open(path + "/fileappend.txt","a")
for r,d,fi in os.walk(path):
     for files in fi:
         if files.endswith(".txt"):                         
              g=open(os.path.join(r,files))
              shutil.copyfileobj(g,f)
              g.close()
f.close()

有人有想法吗?

2 个答案:

答案 0 :(得分:1)

编辑:您在fileappend.txt内创建path,同时写信给它。根据写入刷新到磁盘的时间,您可能正在尝试读取要附加的文件。这会导致许多奇怪的事情。考虑不要将fileappend.txt放在path内,否则只要在完成后将其移到那里。

您可以更整洁地编写代码:

with open(os.path.join(path, "fileappend.tmp"), "a") as dest:
    for _, _, filenames in os.walk(path):
        for filename in fnmatch.filter(filenames, "*.txt"):
            with open(filename) as src:
                shutil.copyfileobj(src, dest)
os.rename(os.path.join(path, "fileappend.tmp"), "fileappend.txt")

答案 1 :(得分:0)

你可以使用cat(shell命令)

cat 1.txt>>2.txt
在python中,您可以使用os.system()来使用shell命令