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
相關用法
- Node.js console.timeLog()用法及代碼示例
- Node.js GM transparent()用法及代碼示例
- Node.js GM raise()用法及代碼示例
- Node.js GM enhance()用法及代碼示例
- Node.js GM resize()用法及代碼示例
- Node.js GM roll()用法及代碼示例
- Node.js GM border()用法及代碼示例
- Node.js GM segment()用法及代碼示例
- Node.js GM quality()用法及代碼示例
- Node.js GM thumbnail()用法及代碼示例
- Node.js GM write()用法及代碼示例
- Node.js GM monochrome()用法及代碼示例
- Node.js GM magnify()用法及代碼示例
- Node.js GM modulate()用法及代碼示例
注:本文由純淨天空篩選整理自RohitPrasad3大神的英文原創作品 Node.js fs.Dir.close() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。