码迷,mamicode.com
首页 > 编程语言 > 详细

Python实现ANSI文件转UTF-8

时间:2017-05-19 13:32:13      阅读:437      评论:0      收藏:0      [点我收藏+]

标签:logs   park   dir   codec   目录   out   list   pen   编码   

ANSI编码的文件转为UTF-8编码的文件。

# ANSI文件转UTF-8
import codecs
import os

# 文件所在目录
file_path = "H:\Python\South.Park.S02.WEB-DL.chs"
files = os.listdir(file_path)

for file in files:
    file_name = file_path + ‘\\‘ + file
    f = codecs.open(file_name, ‘r‘, ‘ansi‘)
    ff = f.read()
    file_object = codecs.open(file_path + ‘\\‘ + file, ‘w‘, ‘utf-8‘)
    file_object.write(ff)

  

Python实现ANSI文件转UTF-8

标签:logs   park   dir   codec   目录   out   list   pen   编码   

原文地址:http://www.cnblogs.com/LicwStack/p/6877817.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!