Python 文件重命名工具代码


Posted in Python onJuly 26, 2009
#Filename:brn.py 
#Description: batch replace certain words in file names 
#Use to bat rename the file in a dir(modify the suffix from a to b) for Windows Vista OS 
import sys 
import os 
import fnmatch 
import re 
#parse params 
p=input("Please input work directory(current path for enter):") 
if p=='\r': 
p='.' 
p=p.rstrip('\r') 
print (p) 
while not os.path.exists(p): 
print (p+' is not existed.Please input the work directory:') 
p=input("Please input work directory(current path for enter):") 
s=input("Please enter the words which need be modified(must):") 
while s=='\r': 
s=input("Please enter the words which need be replaced(must):") 
s=s.rstrip('\r') 
d=input("Please enter the words which want to change to(must):") 
while d=='\r': 
d=input("Please enter the words which want to change to(must):") 
d=d.rstrip('\r') 
try: 
sure=input("Are you sure to rename the file named *"+s+"*"+" to *"+d+"*"+" in directory "+p+"? y/n:") 
sure=sure.rstrip('\r') 
if sure!='y': 
print ("Cancel") 
else: 
for root, dirs, files in os.walk(p, True): 
for file in files: 
print (os.path.join(root,file)) 
if os.path.isfile(os.path.join(root,file)):#Only file is file,not a dir ,do this 
if fnmatch.fnmatch(file, '*'+s+'*'): 
f=str(file).replace(s,d) 
if p=='.': 
command='move '+str(file)+" "+f 
else: 
command="move "+os.path.join(root,file)+" "+os.path.join(root,f) 
print (command) 
if os.system(command)==0:#do actual rename 
print ("Rename "+str(file)+" to "+f+" success") 
else: 
print ("Rename "+str(file)+" to "+f+" failed") 
#else: 
#print str(file)+" is a directory.omit" 
except IndexError: 
print (IndexError.message)
Python 相关文章推荐
Python文件夹与文件的操作实现代码
Jul 13 Python
跟老齐学Python之关于类的初步认识
Oct 11 Python
在centos7中分布式部署pyspider
May 03 Python
python 计算两个日期相差多少个月实例代码
May 24 Python
python3 pandas 读取MySQL数据和插入的实例
Apr 20 Python
pandas 按照特定顺序输出的实现代码
Jul 10 Python
使用python绘制3维正态分布图的方法
Dec 29 Python
numpy数组广播的机制
Jul 12 Python
使用Django和Postgres进行全文搜索的实例代码
Feb 13 Python
python连接mongodb集群方法详解
Feb 13 Python
pyqt5数据库使用详细教程(打包解决方案)
Mar 25 Python
浅谈keras 模型用于预测时的注意事项
Jun 27 Python
python 生成目录树及显示文件大小的代码
Jul 23 #Python
python 域名分析工具实现代码
Jul 15 #Python
python 自动提交和抓取网页
Jul 13 #Python
python self,cls,decorator的理解
Jul 13 #Python
python 解析html之BeautifulSoup
Jul 07 #Python
打印出python 当前全局变量和入口参数的所有属性
Jul 01 #Python
python 查找文件夹下所有文件 实现代码
Jul 01 #Python
You might like
Fedora下安装php Redis扩展笔记
2014/09/03 PHP
基于php(Thinkphp)+jquery 实现ajax多选反选不选删除数据功能
2017/02/24 PHP
基于PHP实现微信小程序客服消息功能
2019/08/12 PHP
使用js修改客户端注册表的方法
2013/08/09 Javascript
初识Javascript小结
2015/07/16 Javascript
体验jQuery和AngularJS的不同点及AngularJS的迷人之处
2016/02/02 Javascript
JQuery PHP图片在线裁剪实例
2020/07/27 Javascript
微信小程序之仿微信漂流瓶实例
2016/12/09 Javascript
socket.io学习教程之基本应用(二)
2017/04/29 Javascript
javascript 中的继承实例详解
2017/05/05 Javascript
JS实现仿饿了么在浏览器标签页失去焦点时网页Title改变
2017/06/01 Javascript
详解vuejs几种不同组件(页面)间传值的方式
2017/06/01 Javascript
如何将 jQuery 从你的 Bootstrap 项目中移除(取而代之使用Vue.js)
2017/07/17 jQuery
在vue-cli的组件模板里使用font-awesome的两种方法
2018/09/28 Javascript
js 获取本周、上周、本月、上月、本季度、上季度的开始结束日期
2020/02/01 Javascript
Vue如何基于es6导入外部js文件
2020/05/15 Javascript
利用JS判断元素是否为数组的方法示例
2021/01/08 Javascript
在django中使用自定义标签实现分页功能
2017/07/04 Python
python实现点击按钮修改数据的方法
2019/07/17 Python
pytorch之ImageFolder使用详解
2020/01/06 Python
python绘制封闭多边形教程
2020/02/18 Python
Python绘制组合图的示例
2020/09/18 Python
澳大利亚最大的女装零售商:Millers
2017/09/10 全球购物
手工制作的男士奢华英国鞋和服装之家:Goodwin Smith
2019/06/21 全球购物
警察先进个人事迹材料
2014/05/16 职场文书
2014年党员教师自我剖析材料
2014/09/30 职场文书
公司离职证明标准样本
2014/10/05 职场文书
2014年法制宣传日活动方案
2014/11/02 职场文书
2014年技术部工作总结
2014/12/12 职场文书
毕业证明模板
2015/06/19 职场文书
2016党员学习作风建设心得体会
2016/01/21 职场文书
Python网络编程之ZeroMQ知识总结
2021/04/25 Python
详解Java七大阻塞队列之SynchronousQueue
2021/09/04 Java/Android
Python中的 Set 与 dict
2022/03/13 Python
世界十大动漫制作公司排行榜,迪士尼上榜,第二是美国代表性文化符
2022/03/18 欧美动漫
MySQL 逻辑备份 into outfile
2022/05/15 MySQL