码迷,mamicode.com
首页 > 编程语言 > 详细

利用Python对文件进行批量重命名——以图片文件为例

时间:2017-09-26 20:57:45      阅读:512      评论:0      收藏:0      [点我收藏+]

标签:for   pen   form   ges   logs   alt   join   mat   img   

效果如下:0001号用户的第 i 张图片

技术分享

代码:

import os


class ImageRename():
    def __init__(self):
        self.path = ‘C:/Users/lbpeng/Desktop/test/chictopia2/images1/fashioninmysoul/full‘

    def rename(self):
        filelist = os.listdir(self.path)
        totalnum = len(filelist)

        i = 1

        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), ‘0001‘ + format(str(i), ‘0>3s‘) + ‘.jpg‘)
                os.rename(src, dst)
                i = i + 1


if __name__ == ‘__main__‘:
    newname = ImageRename()
    newname.rename()

  

 

利用Python对文件进行批量重命名——以图片文件为例

标签:for   pen   form   ges   logs   alt   join   mat   img   

原文地址:http://www.cnblogs.com/CongYuUestcer/p/7598574.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!