当前位置: 首页 > 知识库问答 >
问题:

Python/discord--我正在制作一个discord bot,但在os模块上遇到了一些问题:

严宏旷
2023-03-14

这是添加时导致错误的代码

如果message.content==“id start”:

        dir=(r'C:\\Users\\User\Desktop\User Profiles')
        file = message.author
        path = os.path.join(dir,file)
        isExist = os.path.exists(path)
        if isExist == True:
            await message.channel.send("You already have a profile")

共有1个答案

奚和光
2023-03-14

尝试str(message.author)看起来您试图将两个东西连接在一起,其中一个不是字符串。

 类似资料: