需求:在图片原有的字段上加上额外的字段
本来:
修改后:
具体的代码实现如下:
import os
import re
import sys
path = "/Users/hujinhong/Desktop/轮播图"
fileList = os.listdir(path) # 待修改文件夹
print("修改前:" + str(fileList)) # 输出文件夹中包含的文件
os.chdir(path) # 将当前工作目录修改为待修改文件夹的位置
for fileName in fileList: # 遍历文件夹中所有文件
pat = ".+\.(jpg|jpeg|JPG|png)" # 匹配文件名正则表达式
pattern = re.findall(pat, fileName) # 进行匹配
s1=os.path.splitext(fileName)[0]; #文件名
print(s1)
os.rename(fileName, (s1+'增加自己所需的修改'+ '.' + pattern[0])) # 文件重新命名
print("---------------------------------------------------")
sys.stdin.flush() # 刷新
print("修改后:" + str(os.listdir(path))) # 输出修改后文件夹中包含的文件