python 对test_png文件夹中png文件重新命名,命名规则为P001.png、P002.png、P003.png ……
时间: 2024-03-24 14:37:14 浏览: 59
利用python修改文件夹中文件的名称,并排序。
好的,可以使用如下代码实现:
```python
import os
file_path = "test_png/"
files = os.listdir(file_path)
i = 1
for file in files:
if file.endswith(".png"):
new_name = "P{:03d}.png".format(i)
os.rename(file_path + file, file_path + new_name)
i += 1
```
运行以上代码后,test_png文件夹中的png文件会被重新命名为P001.png、P002.png、P003.png,以此类推。
阅读全文