我有一个包含150个* .txt文件的文件夹。我需要使用python3.5.2删除该文件夹中每个.txt文件的前7行
答案 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:]))