Вот тот самый кусочек кода из моего бота, который может отправить все файлы с любым расширением
import telebot
bot_token = "Ваш Токен"
bot = telebot.TeleBot(token = bot_token)
tb = telebot.TeleBot(bot_token)
@bot.message_handler(commands=['start'])
def start(message):
x = bot.send_message(message.chat.id, "Привет, напиши путь к файлу")
bot.register_next_step_handler(x, send)
def send(message):
path_name = message.text
doc = open(path_name, 'rb')
tb.send_document(message.chat.id, doc)
bot.polling()