您好,登錄后才能下訂單哦!
本文實例為大家分享了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(): explore(os.getcwd()) if __name__=="__main__": main()
以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。