批量文件重命名脚本

实现重命名特定后缀文件,批量增加特定前缀 123456789101112131415161718192021222324252627282930import osdef batch_rename(folder_path, file_extension, prefix): # 检查文件夹是否存在 if not os.path.exists(folder_path): ...

Posted on