如何保存其他名称的图像?现在它看起来像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)
答案 0 :(得分:0)
您可以使用os
模块重命名任何文件
import os
filename = 'oldfilename.jpg'
newFilename = "newfilename.jpg"
os.rename(filename, newFilename)