Python实现批量转换文件编码的方法


Posted in Python onJuly 28, 2015

本文实例讲述了Python实现批量转换文件编码的方法。分享给大家供大家参考。具体如下:

这里将某个目录下的所有文件从一种编码转换为另一种编码,然后保存

import os
import shutil
def match(config,fullpath,type):
  flag=False
  if type == 'exclude':
    for item in config['src']['exclude']:
      if fullpath.startswith(config['src']['path']+os.path.sep+item):
        flag=True
        break
  if type=='filter':
    for item in config['src']['filter']:
      if fullpath.endswith(item):
        flag=True
        break
  return flag
def conver_file(param):
  for root, dirs, files in os.walk(param['src']['path']):
    for filename in files:
      readfile=root+os.path.sep+"%s" %filename
      print(readfile)
      if 'filter' in param['src']:
        if not (match(param,readfile,'filter')):
          continue
      s=''
      outfile=readfile.replace(param['src']['path'],param['dest']['path'])
      try :
        s=open(readfile,encoding=param['src']['encoding']).read()
      except:
        print("file %s read erro" % readfile)
        shutil.copy(readfile,outfile)
      if s: #False and
        print("save")
        with open(outfile, mode='w', encoding=param['dest']['encoding']) as a_file:
          a_file.write(s)
    for dirname in dirs:
      file=root+os.path.sep+"%s" %dirname
      if 'exclude' in param['src']:
        if(match(param,file,'exclude')):
          continue
      outdir=file.replace(param['src']['path'],param['dest']['path'])
      #print(outdir)
      if not os.path.isdir(outdir):
        os.mkdir(outdir)
if __name__ == "__main__":
  param={'src':{'path':r'D:\work\test\trunk','encoding':'gbk','exclude':['dataa'],'filter':['.php','.html','.htm']},
    'dest':{'path':"f:\\test\\new",'encoding':'utf-8'}}
  conver_file(param)

希望本文所述对大家的Python程序设计有所帮助。

Python 相关文章推荐
用Python制作简单的钢琴程序的教程
Apr 01 Python
Python使用ntplib库同步校准当地时间的方法
Jul 02 Python
python+requests+unittest API接口测试实例(详解)
Jun 10 Python
详解Python异常处理中的Finally else的功能
Dec 29 Python
Python File readlines() 使用方法
Mar 19 Python
python安装twisted的问题解析
Aug 21 Python
Python3获取电脑IP、主机名、Mac地址的方法示例
Apr 11 Python
PIL对上传到Django的图片进行处理并保存的实例
Aug 07 Python
Python如何使用函数做字典的值
Nov 30 Python
Django之choices选项和富文本编辑器的使用详解
Apr 01 Python
python可以用哪些数据库
Jun 22 Python
浅析Python OpenCV三种滤镜效果
Apr 11 Python
Python中subprocess的简单使用示例
Jul 28 #Python
Python中文竖排显示的方法
Jul 28 #Python
Python中的getopt函数使用详解
Jul 28 #Python
Python3访问并下载网页内容的方法
Jul 28 #Python
python3抓取中文网页的方法
Jul 28 #Python
python列表操作之extend和append的区别实例分析
Jul 28 #Python
python创建列表并给列表赋初始值的方法
Jul 28 #Python
You might like
乱谈我对耳机、音箱的感受
2021/03/02 无线电
php运行出现Call to undefined function curl_init()的解决方法
2010/11/02 PHP
PHP中对用户身份认证实现两种方法
2011/06/04 PHP
PHP中如何实现常用邮箱的基本判断
2014/01/07 PHP
ThinkPHP3.1数据CURD操作快速入门
2014/06/19 PHP
JavaScript 利用StringBuffer类提升+=拼接字符串效率
2009/11/24 Javascript
百度Popup.js弹出框进化版 拖拽小框架发布 兼容IE6/7/8,Firefox,Chrome
2010/04/13 Javascript
学习面向对象之面向对象的基本概念:对象和其他基本要素
2010/11/30 Javascript
JavaScript中的稀疏数组与密集数组[译]
2012/09/17 Javascript
简约JS日历控件 实例代码
2013/07/12 Javascript
javascript解析json实例详解
2014/11/05 Javascript
javascript限制用户只能输汉字中文的方法
2014/11/20 Javascript
jQuery树形下拉菜单特效代码分享
2015/08/15 Javascript
基于jquery实现全屏滚动效果
2015/11/26 Javascript
jquery对所有input type=text的控件赋值实现方法
2016/12/02 Javascript
easyUI实现类似搜索框关键词自动提示功能示例代码
2016/12/27 Javascript
微信小程序 form组件详解及简单实例
2017/01/10 Javascript
BootStrap框架中的data-[ ]自定义属性理解(推荐)
2017/02/14 Javascript
微信小程序template模板实例详解
2017/10/27 Javascript
浅谈Node.js 中间件模式
2018/06/12 Javascript
解决ie11 SCRIPT5011:不能执行已释放Script的代码问题
2019/05/05 Javascript
关于AngularJS中几种Providers的区别总结
2020/05/17 Javascript
python安装以及IDE的配置教程
2015/04/29 Python
Python制作爬虫采集小说
2015/10/25 Python
Tensorflow 合并通道及加载子模型的方法
2018/07/26 Python
Python中利用aiohttp制作异步爬虫及简单应用
2018/11/29 Python
python算法题 链表反转详解
2019/07/02 Python
Python中list的交、并、差集获取方法示例
2019/08/01 Python
Python中正则表达式对单个字符,多个字符和匹配边界等使用
2021/01/27 Python
CSS3 实现弹跳的小球动画
2020/10/26 HTML / CSS
台湾旅游网站:雄狮旅游网
2017/08/16 全球购物
介绍一下write命令
2012/09/24 面试题
医院门卫岗位职责
2013/12/30 职场文书
机修工工作职责
2014/02/21 职场文书
酒店餐厅2014重阳节活动策划方案
2014/09/16 职场文书
初中语文教师研修日志
2015/11/13 职场文书