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


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


fs.Dir.close()方法是fs.Dir类的内置应用程序编程接口,带有文件系统模块,用于异步关闭目录的基础资源句柄。

用法:

const dir.close()

参数:此方法不接受任何参数。

返回值:此方法返回的Promise只是对回调函数stop()的增强。

以下示例程序旨在说明Node.js中fs.Dir.close()方法的使用



范例1:
档名:GFG.js

// Node program to demonstrate the  
// dir.close() method 
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); 
    
  // Asynchronously closing the directory's 
  // underlying resource handle 
  const promise = dir.close(); 
  
  // Display the result 
  console.log(promise); 
} 
  
// Catching error 
stop('./').catch(console.error);

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

node GFG.js

输出:

范例2:

// Node program to demonstrate the  
// dir.close() API 
const fs = require('fs'); 
  
// Intiating asyn function 
async function stop(path) { 
  
  let dir = null; 
  
  try { 
  
  // Creating and initiating directory's  
  // underlying resource handle 
  dir = await fs.promises. 
    opendir(new URL('file:///F:/java/')); 
  
  } finally { 
  
    if (dir) { 
  
      // Display the result 
      console.log("dir is closed successfully"); 
   
      // Close the file if it is opened. 
      await dir.close(); 
    } 
  } 
} 
  
// 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_close




相关用法


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