多文件重命名
时间:2006-10-08 来源:bbflyerwww
# coding: cp936
"""
文件重命名应用
最近整理硬盘上收藏的相片, 照片确实不少, 照片的名字则五花八门, 确实不方便管理. 于
是我用Python写了段脚本, 实现成批处理文件重命名的功能. 由于仅仅是为了解决个人需要, 所
以我把配置的信息类似文件夹目录和重命名方式嵌在代码中, 量身定做嘛, 精简, 嘎嘎嘎!!
@author 寒江风
@date 2003-10-8
"""
import glob
import os
def main():
print '重命名任务开始'
# files pathname pattern
p = r'H:\风景图片集\*.jpg'
# files list that match the pattern
li = glob.glob(p)
# traverse all the files
k = 1
for f in li:
# create a new filename for the file
i = f.rindex('\\')
j = f.rindex('.')
newf = f.replace(f[i+1:j], '风景%03d' %(k))
k += 1
# rename...
try:
os.rename(f, newf)
print '重命名 ' + f + ' to ' + newf + ' 成功'
except:
print '重命名 ' + f + ' to ' + newf + ' 失败'
print '重命名任务完成'
if __name__ == '__main__':
main()