对文件夹中的视频文件重命名的Python代码
时间: 2023-04-05 19:01:40 浏览: 235
用python语言进行文件重命名
以下是对文件夹中的视频文件重命名的 Python 代码:
```python
import os
path = "your_folder_path" # 文件夹路径
files = os.listdir(path)
for index, file in enumerate(files):
if file.endswith(".mp4") or file.endswith(".avi") or file.endswith(".mkv"):
new_name = "video_" + str(index) + file[-4:] # 新文件名
os.rename(os.path.join(path, file), os.path.join(path, new_name))
```
这段代码会将文件夹中所有的 .mp4、.avi 和 .mkv 格式的视频文件重命名为 "video_序号.后缀名" 的格式。
阅读全文