美文网首页
Node.js 读取文件内容

Node.js 读取文件内容

作者: pokeey | 来源:发表于2018-07-16 17:21 被阅读0次
    fs.readdir('logs',(error,files) => {
      if (error) {
        console.log(error);
      } else {
        console.log(files);
      }
    
    });
    

    相关文章

      网友评论

          本文标题:Node.js 读取文件内容

          本文链接:https://www.haomeiwen.com/subject/baibpftx.html