python批量修改⽂件编码格式的⽅法本⽂实例为⼤家分享了python批量修改⽂件编码格式的具体代码,供⼤家参考,具体内容如下
使⽤说明:
1、使⽤⼯具:Python2.7.6+chardet2.3.0,chardet2.3.0下载地址:点击
2、环境配置:Python安装+配置环境变量,chardet解压放在Python安装⽬录\Lib\site-packages下
举例:批量修改当前路径下所有.cpp⽂件的编码格式为UTF-8,代码如下:
python:
import os
import sys
import codecs
import chardet
def convert(filename,out_enc="UTF-8"):
try:
content=codecs.open(filename,'r').read()
source_encoding=chardet.detect(content)['encoding']
print source_encoding
content=content.decode(source_encoding).encode(out_enc)
codecs.open(filename,'w').write(content)
except IOError as err:
print("I/O error:{0}".format(err))
def explore(dir):
for root,dirs,files in os.walk(dir):
for file in files:
国内源代码网站
if os.path.splitext(file)[1]=='.cpp':
print file
path=os.path.join(root,file)
convert(path)
def main():
wd())
if __name__=="__main__":
main()
以上就是本⽂的全部内容,希望对⼤家的学习有所帮助,也希望⼤家多多⽀持。
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论