У меня есть бот на TeleBot, в нем есть функция для админов - загрузка файлов в папку files, которая лежит в папке со всеми скриптами.
Код скрипта загрузки файлов:
@bot.message_handler(content_types=['document'])
def handle_docs_photo(message):
if message.chat.id == config.admin:
try:
chat_id = message.chat.id
file_info = bot.get_file(message.document.file_id)
downloaded_file = bot.download_file(file_info.file_path)
src = 'files/' + message.document.file_name;
with open(src, 'wb') as new_file:
new_file.write(downloaded_file)
bot.reply_to(message, "Сохраняем!")
except Exception as e:
bot.reply_to(message, e)
else:
bot.send_message(message.chat.id, "Тебе нельзя!")
Как сделать так, чтоб при вводе команды /getfile отправлялись все файлы из папки files в чат к пользователю?