本帖最后由 icehack 于 2019-10-29 10:39 编辑
下载论坛视频教程的文件名被打了广告,看起来很乱。自己用python写了个批量 替换改名的代码支持子目下的文件改名
[Python] 纯文本查看 复制代码
import os
path=R'E:\Python 视频\Python语法基础和常用模块使用(四)【2019千锋Linux】(79集)'
fileList = os.listdir(path)
#要查找的字符串
strname = '千锋教育'
#替换后的字符串,为空则册除strname = '千锋教育'
newname =''
for root, dirs, files in os.walk(path, topdown=False):
for name in files:
if name.find(strname) != -1 :
oldFileName = os.path.join(root, name)
newFileName = os.path.join(root,name.replace(strname,newname))
os.rename(oldFileName, newFileName)
print("替换完成)
|