求助求助
import glob# 获取当前文件夹下的所有txt文件
txt_files = glob.glob("*.TXT")
for file in txt_files:
# 新文件的文件名,添加"_updated"后缀
new_file = file.split(".") + "_updated." + file.split(".")
with open(file, 'r') as f:
with open(new_file, 'w') as new_f:
# 逐行读取并处理文档内容
for line in f:
if len(line) < 14:
# 如果行长度小于14个字符,不进行处理
new_f.write(line)
else:
# 在指定位置插入空格
new_line = line[:4] + " " + line + " " + line + " " + line + " " + line[
10:12] + " " + line[
12:14] + " " + line[
14:]
new_f.write(new_line)
我想将新文件的内容保存到旧文件中,并且删除新文件,所有操作在当前文件夹下进行 您可以使用Python的os模块中的rename()函数来实现将新文件的内容保存到旧文件中,并且删除新文件的操作。代码如下:
import os
import glob
# 获取当前文件夹下的所有txt文件
txt_files = glob.glob("*.TXT")
for file in txt_files:
# 新文件的文件名,添加"_updated"后缀
new_file = file.split(".") + "_updated." + file.split(".")
with open(file, 'r') as f:
with open(new_file, 'w') as new_f:
# 逐行读取并处理文档内容
for line in f:
if len(line) < 14:
# 如果行长度小于14个字符,不进行处理
new_f.write(line)
else:
# 在指定位置插入空格
new_line = line[:4] + " " + line + " " + line + " " + line + " " + line + " " + line + "" + line
new_f.write(new_line)
# 将新文件的内容保存到旧文件中,并删除新文件
os.remove(file)
os.rename(new_file, file)
在代码中,我们使用os模块中的remove()函数来删除旧文件,使用rename()函数来将新文件的内容保存到旧文件中,并删除新文件。 问题求助
在你提供的代码中,你希望将处理后的文档保存到旧文件中,并删除新文件。
根据你的需求,我修改了代码以实现你的要求:
import glob
import os
txt_files = glob.glob("*.TXT")
for file in txt_files:
with open(file, 'r+') as f:
lines = f.readlines()
f.seek(0)
f.truncate()
for line in lines:
if len(line) < 14:
f.write(line)
else:
new_line = line[:4] + " " + line + " " + line + " " + line + " " + line + " " + line
f.write(new_line)
# 删除新文件
os.remove(file.split(".") + "_updated." + file.split("."))
这段代码与之前的代码类似,只是在处理完内容后,使用 os.remove() 函数删除新文件。
希望这个修改能满足你的需求!如果还有其他问题,请随时提问。
球一个最佳答案谢谢啦!这对我非常重要!{:10_254:}{:10_254:}{:10_254:}
页:
[1]