python批量转换utf8_Python 对目录中的文件进行批量转码(GBK>UTF8)

# -*- coding:utf-8 -*-

__author__ = 'tsbc'

import os,sys

import chardet

def convert( filename, in_enc = "GBK", out_enc="UTF8" ):

try:

print "convert " + filename,

content = open(filename).read()

result = chardet.detect(content)#通过chardet.detect获取当前文件的编码格式串,返回类型为字典类型

coding = result.get('encoding')#获取encoding的值[编码格式]

if coding != 'utf-8':#文件格式如果不是utf-8的时候,才进行转码

print coding + "to utf-8!",

new_content = content.decode(in_enc).encode(out_enc)

open(filename, 'w').write(new_content)

print " done"

else:

print coding

except IOError,e:

# 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()

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值