为什么我的 DJS 机器人找不到我的命令文件夹?

Why can't my DJS bot find my commands folder?

我正在为我的 discord.js 机器人制作命令处理程序。但是机器人找不到“commands”文件夹。

行代码我有问题:

const commandFiles = fs.readdirSync('./commands').filter(file => file.endsWith('.js'));

错误信息:

Uncaught Error: ENOENT: no such file or directory, scandir './commands'

问题是什么,解决方案是什么?

尝试用重音符号包裹 ./ 命令:

`./commands`

代替“./commands”或在末尾附加“/”有时会有帮助。

如果您希望处理程序递归搜索所有命令文件,例如你创建了子目录来组织你的命令,你可以使用我使用的功能(并推荐):

const fs = require('fs');
const path = require('path');
const rootDir = path.dirname(require.main.filename);
const fileArray = [];

const readCommands = (dir) => {

    const __dirname = rootDir;

    // Read out all command files
    const files = fs.readdirSync(path.join(__dirname, dir));

    // Loop through all the files in ./commands
    for (const file of files) {
        // Get the status of 'file' (is it a file or directory?)
        const stat = fs.lstatSync(path.join(__dirname, dir, file));

        // If the 'file' is a directory, call the 'readCommands' function
        // again with the path of the subdirectory
        if (stat.isDirectory()) {
            readCommands(path.join(dir, file));
        }
        else {
            const fileDir = dir.replace('\', '/');
            fileArray.push(fileDir + '/' + file);
        }
    }
};


readCommands('commands');