Python批量重命名

代码如下:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# @Date : 2020-12-19 15:02:56
# @Author : KY (xxxxxx@g.com)
# @Link : http://example.org
# @Version : $Id$

import os

def rename():
name = "p";
count = 0;
path = "F:\Pictures\Assets" #文件所在路径

filelist = os.listdir(path) #该文件夹下所有的文件(包括文件夹)
for files in filelist: #遍历所有文件
Olddir = os.path.join(path,files) #原来的文件路径
if os.path.isdir(Olddir): #如果是文件夹就跳过
continue
filename = os.path.splitext(files)[0] #文件名
filetype = os.path.splitext(files)[1] #扩展名
Newdir = os.path.join(path,str(name)+str(count)+filetype) #新文件路径
os.rename(Olddir,Newdir) #重新命名
count += 1
rename()

最终效果如图: 重命名