発生している問題・エラーメッセージ
discordBot/testbot2/Bot.py Traceback (most recent call last): File "c:\Users\隠す\Desktop\discordBot\testbot2\Bot.py", line 50, in <module> file=open('token.txt') FileNotFoundError: [Errno 2] No such file or directory: 'token.txt'
該当のソースコード
python
1import discord 2from discord.ext import commands 3 4bot = commands.Bot(command_prefix="t!", intents=discord.Intents.all()) 5bot.remove_command("help") 6 7@bot.event 8async def on_ready(): 9 print("ボットがオンラインです!") 10 11file=open('token.txt') 12token=file.read() 13bot.run(token) 14file.close()
なぜか、token.txtがあるのに読み込んでくれないんです。
どうしてでしょうか。。?
pythonのバージョン:python 3.9.7
前は読み込めてたんですけどね、、
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/09/10 22:52