保存图像名称

时间:2020-04-26 07:00:44

标签: python python-3.x image file

如何保存其他名称的图像?现在它看起来像File_1.jpg,File_2.jpg等。我希望它看起来像message.from_user.id + .jpg

         downloaded_file = bot.download_file(file_info.file_path)
         src = "/home/user/imgs/" + file_info.file_path
         with open(src, "wb") as new_img:
             new_img.write(downloaded_file)
             bot.send_message(message.chat.id, message.photo)

1 个答案:

答案 0 :(得分:0)

您可以使用os模块重命名任何文件

import os
filename = 'oldfilename.jpg'
newFilename = "newfilename.jpg"
os.rename(filename, newFilename)