方法說明:
更改一個文件所提供的文件描述符所引用的文件的時間戳記。
簡稱 更改時間戳記
文法:
fs.futimes(fd, atime, mtime, callback)
由於方法屬於fs模組,使用前需要引入fs模組(var fs= require(“fs”) )
接收參數:
fd 識別碼
atime
mtime
callback 回呼
範例:
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');
});
});
});
原始碼:
fs.futimes = function(fd, atime, mtime, callback) {
atime = toUnixTimestamp(atime);
mtime = toUnixTimestamp(mtime);
binding.futimes(fd, atime, mtime, makeCallback(callback));
};