【Python】python批量修改文件名(去掉部分字符串)
import ospath = "E:\\test\\"drop_str= '_00001'#获取该目录下所有文件,存入列表中fileList=os.listdir(path)for file in fileList:old=path + filenew=path + ''.join(file.split(drop_str)) #join和split方法os.rename(old, new)#re
·
import os
path = "E:\\test\\"
drop_str= '_00001'
#获取该目录下所有文件,存入列表中
fileList=os.listdir(path)
for file in fileList:
old=path + file
new=path + ''.join(file.split(drop_str)) #join和split方法
os.rename(old, new) #rename方法
print(old, '======>', new)
转载至:仅作学习笔记记录
更多推荐
已为社区贡献1条内容
所有评论(0)