**
导入相关库
**
import os
image_folder = " D:\\images"
image_files = [f for f in os.listdir(image_folder) if f.endswith(".jpg")]
if not image_files:
print("文件夹中没有图片文件.")
else:
# 按照顺序重命名图片文件
for i, image_file in enumerate(image_files, 1):
# 构建新的文件名
new_name = f"{i}.jpg"
# 获取旧文件的完整路径和新文件的完整路径
old_path = os.path.join(image_folder, image_file)
new_path = os.path.join(image_folder, new_name)
# 重命名文件
os.rename(old_path, new_path)
print(f"重命名 {image_file} 为 {new_name}")
print("重命名完成.")