如何使用python删除文件夹中第一个7行的几个* .txt文件?

时间:2018-12-05 20:17:19

标签: python-3.x

我有一个包含150个* .txt文件的文件夹。我需要使用python3.5.2删除该文件夹中每个.txt文件的前7行

1 个答案:

答案 0 :(得分:0)

您可以使用Python的OS Module从文件夹中获取所有* .txt文件的名称。然后,您可以遍历此名称,从每个文件中读取所有行,然后用要保留的行覆盖文件:

from os import listdir, path

path_str = '.'  # your directory path
txts = [f for f in listdir(path_str)
        if f.endswith('.txt') and path.isfile(path.join(path_str, f))]

for txt in txts:
    with open(txt, 'r') as f:
        lines = f.readlines()

    with open(txt, 'w') as f:
        f.write(''.join(lines[7:]))