import os #设定文件路径 path="F:\\需要修改的文件路径\\" #遍历文件 for file in os.listdir(path): if os.path.isfile(os.path.join(path,file))==True: #设置新文件名 new_name=file.replace("要替换的老的文件名内容","新的文件名内容") #重命名文件 os.rename(os.path.join(path,file),os.path.join(path,new_name)) print ("complete!")