注意: 本文分解方法需要使用python.
操作前準備:
1)安裝python及對應版本PIL(筆者安裝的是2.7)
2)創(chuàng)建以下腳本,腳本命名為rename.py
操作流程:
1)新建一個文件夾A,放入將要修改名字的圖片
2)將 rename.py 拖動到命令行(打開方式:快捷鍵win+R輸入cmd)中,回車
3)命令行出現(xiàn)“please input the folder-dir(drag is ok):”,此時將文件夾A拖到命令行中
4)命令行出現(xiàn)“please input a new name:”,此時輸入圖片新名字,回車
- 修改結束 -
以下是腳本
encoding: utf-8
import os
path = raw_input('please input the folder-dir(drag is ok):')+'/'
imgList = os.listdir(path)
newnamemodule = raw_input('please input a new name:')
n = 0
for i in imgList:
oldname = path+imgList[n]
newname = path+newnamemodule+str(n+1)+'.png'
print(oldname, newname)
os.rename(oldname, newname)
print(imgList[n], ' ---> ', newnamemodule+str(n+1)+'.png')
n+=1
print('rename finished .......')