用python实现多文件多文本替换功能
今天修改单位项目代码时由于改变了一个数据结构名称,结果有几十个文件都要修改,一个个改实在太麻烦,又没有搜到比较靠谱的工具软件,于是干脆用python手撸了一个小工具,发现python在这方面确实方便,代码也就几十行,这里记录一下,需要的朋友请拿走。
有个需要注意的地方,就是文件的编码方式,要替换成您文件的编码方式,我这里是utf-8,windows文件有可能是gbk。
python
import os
import fileinput
# 定义一个函数,用于替换文件中的字符串
def replace_in_file(file_path, old_str, new_str):
for line in fileinput.input(file_path, inplace=True, encoding='utf-8'):
print(line.replace(old_str, new_str), end='')
fileinput.close()
if __name__ == '__main__':
# 设置要替换的目录路径
directory = 'D"\\dir\\subdir'
# 设置要替换的字符串字典(map)
placeDic = {'oldstring1:newstring1', 'oldstring2:newstring2', 'oldstring3:newstring3'}
old_strings = placeDic.keys()
# 遍历目录下的所有文件
for filename in os.listdir(directory):
# 只处理需要的文件
if filename.endswith('.cpp'):
file_path = os.path.join(directory, filename)
for old_string in old_strings:
new_string = placeDic.get(old_string, '');
replace_in_file(file_path, old_string, new_string);