使用python实现批量修改txt内容
# coding:utf8# 批量修改txt内容
import os
import re
def reset(path):
i=0
filelist = os.listdir(path)# 该文件夹下所有的文件(包括文件夹)
for files in filelist:# 遍历所有文件
Olddir = os.path.join(path, files)# 原来的文件路径
if os.path.isdir(Olddir):# 如果是文件夹则跳过
reset(Olddir)
else:
i = i + 1
filename = os.path.splitext(files)# 文件名
filetype = os.path.splitext(files)# 文件扩展名
filePath = path+'/'+filename+filetype
print(filePath)
alter(filePath,".off/","/")
def alter(file,old_str,new_str):
"""
将替换的字符串写到一个新的文件中,然后将原文件删除,新文件改为原来文件的名字
:param file: 文件路径
:param old_str: 需要替换的字符串
:param new_str: 替换的字符串
:return: None
"""
with open(file, "r", encoding="utf-8") as f1,open("%s.bak" % file, "w", encoding="utf-8") as f2:
for line in f1:
if old_str in line:
line = line.replace(old_str, new_str)
f2.write(line)
os.remove(file)
os.rename("%s.bak" % file, file)
path = r"./list/"
reset(path) 感谢分享! 不会,表示这个比较高级 66666666666 # coding:utf8
# 批量修改txt内容
import os
import re
def reset(path):
i=0
filelist = os.listdir(path)# 该文件夹下所有的文件(包括文件夹)
for files in filelist:# 遍历所有文件
Olddir = os.path.join(path, files)# 原来的文件路径
if os.path.isdir(Olddir):# 如果是文件夹则跳过
reset(Olddir)
else:
i = i + 1
filename = os.path.splitext(files)# 文件名
filetype = os.path.splitext(files)# 文件扩展名
filePath = path+'/'+filename+filetype
print(filePath)
alter(filePath,".off/","/")
def alter(file,old_str,new_str):
"""
将替换的字符串写到一个新的文件中,然后将原文件删除,新文件改为原来文件的名字
:param file: 文件路径
:param old_str: 需要替换的字符串
:param new_str: 替换的字符串
:return: None
"""
with open(file, "r", encoding="utf-8") as f1,open("%s.bak" % file, "w", encoding="utf-8") as f2:
for line in f1:
if old_str in line:
line = line.replace(old_str, new_str)
f2.write(line)
os.remove(file)
os.rename("%s.bak" % file, file)
path = r"./list/"
reset(path) 希望能用markdown排版发布,这个确实看起来不规整 感谢楼主分享 谢谢楼主分享 谢谢大佬分享,好东西啊,可以用来修改字典 感谢分享