一勤篮、pip版本更新
python -m pip install -U pip
二、給文件夾下的文件批量命名
# coding:utf-8
import os
def rename():
count = 1
path = r'C:\Users\daile\Desktop\T'
filelist = os.listdir(path) # 該文件夾下所有的文件(包括文件夾)
for files in filelist: # 遍歷所有文件
if count < 10:
num = '0' + str(count)
else:
num = str(count)
Olddir = os.path.join(path, files) # 原來(lái)的文件路徑
if os.path.isdir(Olddir): # 如果是文件夾則跳過(guò)
continue
filetype = os.path.splitext(files)[1] # 文件擴(kuò)展名
Newdir = os.path.join(path, num + filetype) # 新的文件路徑
os.rename(Olddir, Newdir) # 重命名
count += 1
rename()
顯示文件后綴
我的電腦------查看------文件擴(kuò)展名----打勾
運(yùn)行Python文件
python C:\Users\daile\Desktop\rename.py