1、直接到项目根目录打开终端
2、终端运行touch app.py 创建python 脚本文件
3、打开脚本输入需要运行的脚本
代码块
#!/usr/bin/env python
import os
for dirpath, _, filenames in os.walk('.'):
for filename in filenames:
if filename.startswith('oldName'):
oldFile = os.path.join(dirpath, filename)
newFile = os.path.join(dirpath, filename.replace('oldName', 'newName', 2))
print(newFile) # 修改此处
inFile = open(oldFile)
outFile = open(newFile, 'w')
replacements = {'oldName':'newName'}
for line in inFile:
for src, target in replacements.items():
line = line.replace(src, target)
outFile.write(line)
inFile.close()
outFile.close()
os.remove(oldFile)
以上的脚本是对应的python3的 参考链接
我这个只是作为备忘所以没有写的那么细 有兴趣可以点击链接去看对方的文章写的很详细包括如何修改项目名称和类名前缀的 后面有时间再看看写一个详细的备忘