编写程序批量重命名Butterfly目录及其子目录中的图片
时间: 2023-05-18 14:07:37 浏览: 120
批量重命名图片
可以使用Python编写一个脚本来批量重命名Butterfly目录及其子目录中的图片。以下是示例代码:
```python
import os
def rename_files(path):
for root, dirs, files in os.walk(path):
for file in files:
if file.endswith(".jpg") or file.endswith(".png"):
old_name = os.path.join(root, file)
new_name = os.path.join(root, "new_" + file)
os.rename(old_name, new_name)
path = "/path/to/Butterfly"
rename_files(path)
```
这个脚本会遍历Butterfly目录及其子目录中的所有图片文件,并将它们重命名为"new_" + 原文件名。你可以根据需要修改重命名规则。
阅读全文