码迷,mamicode.com
首页 > 其他好文 > 详细

Node 的fs模块

时间:2018-07-05 18:23:47      阅读:132      评论:0      收藏:0      [点我收藏+]

标签:pat   call   否则   and   func   dem   read   nod   bsp   

这个fs.readdir路径要加上__dirname  找到绝对路径  否则会报错

{ Error: ENOENT: no such file or directory, scandir ‘/Users/**/Desktop/demo/test/test/‘
  errno: -2,
  code: ‘ENOENT‘,
  syscall: ‘scandir‘,
  path: ‘/Users/**/Desktop/demo/test/test/‘ }

  

fs.readdir(__dirname+"/public/",function(err, files){
    if (err) {
        return console.error(err);
    }
    files.forEach( function (file){
        console.log( file );
    });
 })

 

Node 的fs模块

标签:pat   call   否则   and   func   dem   read   nod   bsp   

原文地址:https://www.cnblogs.com/yiyi17/p/9269687.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!