目录下文件快速批量替换关键字

使用方法:将Root修改为压缩包解压后的目录,然后填写要替换的新旧字符串即可,最后手动压缩一下就行:

"""
@author: Bre Athy
@contact: https://www.zhihu.com/people/you-yi-shi-de-hu-xi
@productware: PyCharm
@file: html汉化.py
@time: 2020/1/8 22:19
"""
import os

def replaceGO(path,theold,thenew):
    global a
    for f in os.listdir(path):
        f = os.path.join(path, f)
        if os.path.isfile(f):
            with open(f, "r", encoding="utf-8")as fp:
                content = fp.read()
            if content.find(theold)!=-1:
                content = content.replace(theold,thenew)
                a += 1
            if content.find(theold.encode('unicode_escape').decode())!=-1:
                content = content.replace(theold.encode('unicode_escape').decode(), thenew.encode('unicode_escape').decode())
                a += 1
            with open(f, "w", encoding="utf-8")as fp:
                fp.write(content)
        elif os.path.isdir(f):
            replaceGO(f,theold,thenew)
        else:
            print(f)


def main():
    global a
    a = 0
    Root = r"文件解压目录"

    theold = r"旧字符串"
    thenew = r"新字符串"
    replaceGO(Root, theold, thenew)
    print(f"【旧字符串】一共替换了 {a} 次")


if __name__ == "__main__":
    main()
  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值