import os
class BatchRename():
def __init__(self):
self.path = 'C:/Users/lijiale/Desktop/eee'
def rename(self):
filelist = os.listdir(self.path)
total_num = len(filelist)
i = 0
for item in filelist:
if item.endswith('.jpg'):
src = os.path.join(os.path.abspath(self.path), item)
dst = os.path.join(os.path.abspath(self.path), str(i) + '.jpg')
try:
os.rename(src, dst)
print ('converting %s to %s ...' % (src, dst))
i = i + 1
except:
continue
print ('total %d to rename & converted %d jpgs' % (total_num, i))
if __name__ == '__main__':
start = BatchRename()
start.rename()
python 批量重命名文件夹中的图片文件
最新推荐文章于 2024-03-24 16:15:46 发布