source insight竟然不支援utf-8,為支援中文顯示,故寫一python小程式將某個目錄下所有檔案全部從utf-8轉碼為gbk
程式碼如下:
#!/usr/local/bin/python # -*- coding: utf-8 -*- '''
source insight不支援utf-8,為支援中文顯示,故寫該程式
將某個目錄下所有檔案全部從utf-8轉碼為gbk
usage: chmod +x convert.py ./convert.py src mysrc ''' import os import shutil import re import sys ##################################### def search(src,dest,handler): filelist=os.listdir(src) for f in filelist: cf=src+'/'+f df=dest+'/'+f if os.path.isdir(cf): if not os.path.exists(df): os.makedirs(df) search(cf,df,handler) else: handler(cf,df)#the function dealing with file ########################################################## def convertFile(sfn,dfn): sf=open(sfn,'r') s=sf.read() try: s=s.decode('utf-8') df=open(dfn,'w') df.write(s.encode('gbk')) df.flush() sf.close() df.close() print '*** ',sfn except: sf.close() print sfn sys.exit() if name == 'main': srcDir=os.getcwd()+'/'+sys.argv[1] dstDir=os.getcwd()+'/'+sys.argv[2] search(srcDir,dstDir,convertFile)
以上就是python寫的檔案轉碼小工具的內容,更多相關內容請關注PHP中文網(www.php.cn)!