方法說明:
以非同步的方式關閉檔案。
文法:
fs.close(fd, [callback(err)])
由於方法屬於fs模組,使用前需要引入fs模組(var fs= require(“fs”) )
接收參數:
fd 所傳送的檔案描述。
callback 回調
範例:
var fs = require('fs');
fs.open('/path/demo1.txt', 'a', function (err, fd) {
if (err) {
throw err;
}
fs.futimes(fd, 1388648322, 1388648322, function (err) {
if (err) {
throw err;
}
console.log('futimes complete');
fs.close(fd, function () {
console.log('Done');
});
});
});
原始碼:
[code]
fs.close = function(fd, callback) {
binding.close(fd, makeCallback(callback));
};
[code]