當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。