python批量修改编码

#!/usr/bin/env python
# coding : utf-8

import os,sys  
import re;

def convert( filename, in_enc = "gbk", out_enc="utf-8" ):  
    try:  
        p = re.search(r'cpp' , filename); #添加过滤条件
        if p == None:
            return;
        print ("convert " + filename)  
        content = open(filename).read()  
        new_content = content.decode(in_enc).encode(out_enc)  
        open(filename, 'w').write(new_content)  
        print (" done")  
    except:  
        print (" error" ) 
  
def explore(dir):  
    for root, dirs, files in os.walk(dir):  
        for file in files:  
            path = os.path.join(root, file)  
            convert(path)  
  
def main():  
    for path in sys.argv[1:]:  
        if os.path.isfile(path):  
            convert(path)  
        elif os.path.isdir(path):  
            explore(path)  
  
if __name__ == "__main__":  
    main()  


这个是递归的,原理还不太懂,貌似python2的一个decoding 一个encoding 就完事了,应该是decoding变成了 Unicode,然后有encoding成utf-8了


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值