Python实现批量更换指定目录下文件扩展名的方法


Posted in Python onSeptember 19, 2016

本文实例讲述了Python实现批量更换指定目录下文件扩展名的方法。分享给大家供大家参考,具体如下:

#encoding=utf-8
#author: walker
#date: 2013-12-06
#function: 深度遍历指定目录,更换指定扩展名
import os
import os.path
#读入指定目录并转换为绝对路径
rootdir = raw_input('root dir:\n')
rootdir = os.path.abspath(rootdir)
print('absolute path:\n' + rootdir)
#读入原扩展名并标准化
old_ext = raw_input('old extension:\n')
old_ext = old_ext.strip()
if old_ext[0] != '.':
  old_ext = '.' + old_ext
#读入新扩展名并标准化
new_ext = raw_input('new extension:\n')
new_ext = new_ext.strip()
if new_ext[0] != '.':
  new_ext = '.' + new_ext
for parent, dirnames, filenames in os.walk(rootdir):
  for filename in filenames:
    pathfile = os.path.join(parent, filename)
    if pathfile.endswith(old_ext):
      new_pathfile = os.path.splitext(pathfile)[0] + new_ext
      print('=======================================================')
      print(pathfile)
      print('-------------------------------------------------------')
      print(new_pathfile)
      print('=======================================================')
      os.rename(pathfile, new_pathfile)

PS:上述功能一个shell命令也可以实现

#将后缀.ini换成.txt
#路径名可以是相对路径或绝对路径
find 路径名 | rename 's/\.ini$/\.txt/'

注意,上面的rename命令是perl版的rename命令。

PS2:scandir的兼容代码。

# Use the built-in version of scandir/walk if possible, otherwise
# use the scandir module version
try:
  from os import scandir, walk  #python3.5+
except ImportError:
  from scandir import scandir, walk #python3.4-

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

Python 相关文章推荐
python 自动提交和抓取网页
Jul 13 Python
wxPython定时器wx.Timer简单应用实例
Jun 03 Python
Pycharm学习教程(2) 代码风格
May 02 Python
Bottle框架中的装饰器类和描述符应用详解
Oct 28 Python
python判断字符串是否是json格式方法分享
Nov 07 Python
python调用API实现智能回复机器人
Apr 10 Python
解决pandas使用read_csv()读取文件遇到的问题
Jun 15 Python
推荐10款最受Python开发者欢迎的Python IDE
Sep 16 Python
Selenium 安装和简单使用的实现
Dec 04 Python
python实现模拟器爬取抖音评论数据的示例代码
Jan 06 Python
Python调用SMTP服务自动发送Email的实现步骤
Feb 07 Python
Pytorch中Softmax和LogSoftmax的使用详解
Jun 05 Python
Python按行读取文件的实现方法【小文件和大文件读取】
Sep 19 #Python
Python遍历目录并批量更换文件名和目录名的方法
Sep 19 #Python
Python实现更改图片尺寸大小的方法(基于Pillow包)
Sep 19 #Python
Python自定义进程池实例分析【生产者、消费者模型问题】
Sep 19 #Python
python安装PIL模块时Unable to find vcvarsall.bat错误的解决方法
Sep 19 #Python
Python操作Access数据库基本步骤分析
Sep 19 #Python
Python自定义主从分布式架构实例分析
Sep 19 #Python
You might like
PHP5中实现多态的两种方法实例分享
2014/04/21 PHP
PHP语法小结之基础和变量
2015/11/22 PHP
WordPress中设置Post Type自定义文章类型的实例教程
2016/05/10 PHP
php递归函数怎么用才有效
2018/02/24 PHP
在Laravel5中正确设置文件权限的方法
2019/05/22 PHP
Jquery事件的连接使用示例
2013/06/18 Javascript
JS去掉第一个字符和最后一个字符的实现代码
2014/02/20 Javascript
Javascript中arguments和arguments.callee的区别浅析
2015/04/24 Javascript
利用js实现禁止复制文本信息
2015/06/03 Javascript
JavaScript中setMonth()方法的使用详解
2015/06/11 Javascript
Bootstrap导航条可点击和鼠标悬停显示下拉菜单的实现代码
2016/06/23 Javascript
javascript实现右下角广告框效果
2017/02/01 Javascript
JS正则表达式验证账号、手机号、电话和邮箱是否合法
2017/03/08 Javascript
nodejs 日志模块winston的使用方法
2018/05/02 NodeJs
vue 实现input表单元素的disabled示例
2019/10/28 Javascript
微信小程序加载机制及运行机制图解
2019/11/27 Javascript
[01:22:29]真视界:2019年国际邀请赛总决赛
2020/01/29 DOTA
Python中使用PyQt把网页转换成PDF操作代码实例
2015/04/23 Python
python的re正则表达式实例代码
2018/01/24 Python
python使用Tesseract库识别验证
2018/03/21 Python
pyQt4实现俄罗斯方块游戏
2018/06/26 Python
Anaconda下配置python+opencv+contribx的实例讲解
2018/08/06 Python
10行Python代码计算汽车数量的实现方法
2019/10/23 Python
Python基础之字符串操作常用函数集合
2020/02/09 Python
Eclipse配置python默认头过程图解
2020/04/26 Python
Python selenium实现断言3种方法解析
2020/09/08 Python
wordpress添加Html5的表单验证required方法小结
2020/08/18 HTML / CSS
葡萄牙鞋子品牌:Fair
2016/12/10 全球购物
加拿大时装零售商:Influence U
2018/12/22 全球购物
捷科时代的软件测试笔试题
2015/11/09 面试题
甘南现象心得体会
2014/09/11 职场文书
“向国旗敬礼”主题班会活动设计方案
2014/09/27 职场文书
学校运动会广播稿范文
2014/10/02 职场文书
2015秋季幼儿园开学通知
2015/07/16 职场文书
2016入党积极分子党课学习心得体会
2015/10/09 职场文书
Python+OpenCV实现在图像上绘制矩形
2022/03/21 Python