当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Node.js fs.Dir.read()用法及代码示例


fs.Dir.read()方法是文件系统模块内的类fs.Dir的内置应用程序编程接口,用于异步读取每个下一个目录(直接)。

用法:

const fs.Dir.read(callback)

参数:此方法将回调函数作为具有以下参数的参数。

  • err:如果发生任何错误。
  • dirent:读取后目录的目录。

返回值:此方法不返回任何值。

以下程序说明了Node.js中fs.Dir.read()方法的使用:



范例1:
档名:GFG.js

// Node program to demonstrate the  
// dir.path() API 
const fs = require('fs'); 
   
// Intiating asyn function 
async function stop(path) { 
   
  // Creating and initiating directory's 
  // underlying resource handle 
  const dir = await fs.promises 
    .opendir(new URL('file:///F:/')); 
  
  // Getting all the dirent of the directory 
  for (var i = 1 ; i<=2 ; i++) { 
  
    // Reading each dirent one by one  
    // by using read() method 
    dir.read( (err, dirent) => { 
  
      // Display each dirent one by one 
      console.log(`${dirent.name}  
      ${err ? 'does not exist':'exists'}`); 
    }); 
  } 
} 
   
// Catching error 
stop('./').catch(console.error);

使用以下命令运行GFG.js文件:

node GFG.js

输出:

范例2:
档名:GFG.js

// Node program to demonstrate the  
// dir.path() API 
const fs = require('fs'); 
   
// Initiating asyn function 
async function stop(path) { 
   
  // Creating and initiating directory's 
  // underlying resource handle 
  const dir = await fs.promises.opendir(path); 
  
  // Getting all the dirent of the directory 
  for (var i = 1 ; i<=4 ; i++) { 
  
    // Reading each dirent one by one  
    // by using read() method 
    dir.read( (err, dirent) => { 
  
      // Throwing error 
      if(err) throw err 
  
      // Display each dirent one by one 
      console.log(dirent.name); 
    }); 
  } 
} 
   
// Catching error 
stop('./').catch(console.error);

使用以下命令运行GFG.js文件:

node GFG.js

输出:

注意:上面的程序无法在在线JavaScript和脚本编辑器上运行。

参考: https://nodejs.org/dist/latest-v12.x/docs/api/fs.html#fs_dir_read_callback




相关用法


注:本文由纯净天空筛选整理自RohitPrasad3大神的英文原创作品 Node.js fs.Dir.read() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。