下面是批量修改文件名为姓名的小应用:
import os
import random
def random_name_picture(image_folder, name_file):
# 读取姓名文件
with open(name_file, 'r', encoding='utf-8') as f:
names = f.read().splitlines()
# 获取图片文件列表
image_files = [f for f in os.listdir(image_folder) if f.lower().endswith(('.png', '.jpg', '.jpeg'))]
# 打乱姓名顺序
random.shuffle(names)
# 为图片重命名
for i, image_file in enumerate(image_files):
if i < len(names):
old_path = os.path.join(image_folder, image_file)
file_extension = os.path.splitext(image_file)[1]
new_name = f"{names[i]}{file_extension}"
new_path = os.path.join(image_folder, new_name)
os.rename(old_path, new_path)
print(f"将 {image_file} 重命名为 {new_name}")
else:
print("姓名数量不足,无法继续重命名图片。")
break
if __name__ == "__main__":
# 图片所在文件夹路径
image_folder = r'C:\Users\Administrator\WPSDrive\260820601\WPS云盘\教研组\2025春\网络学习截图\高二数学备课组'
# 姓名文件路径
name_file = r'C:\Users\Administrator\WPSDrive\260820601\WPS云盘\教研组\2025春\网络学习截图\高二数学备课组\list.txt'
random_name_picture(image_folder, name_file)