📅  最后修改于: 2023-12-03 14:44:38.439000             🧑  作者: Mango
Node.js中的fs.close()方法用于关闭打开的文件。该方法接受两个参数,第一个参数为文件描述符,第二个参数为回调函数。当关闭文件成功或失败时,回调函数将被调用。
以下是fs.close()方法的语法:
fs.close(fd, callback)
该方法没有返回值。
下面的示例演示如何使用fs.close()方法:
const fs = require('fs');
// 打开文件
fs.open('myfile.txt', 'r', (err, fd) => {
if (err) {
throw err;
}
console.log('文件已打开');
// 关闭文件
fs.close(fd, (err) => {
if (err) {
throw err;
}
console.log('文件已关闭');
});
});