0


【Python】python批量修改文件名(去掉部分字符串)

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)

转载至:仅作学习笔记记录

python批量修改文件名(去掉部分字符串) - cincinOne - 博客园

标签: python gnu p2p

本文转载自: https://blog.csdn.net/sinat_21791203/article/details/122718863
版权归原作者 sinat_21791203 所有, 如有侵权,请联系我们删除。

“【Python】python批量修改文件名(去掉部分字符串)”的评论:

还没有评论