node.js中的fs.futimes方法使用说明_node.js
程序员文章站
2022-04-14 22:04:46
...
方法说明:
fs.futimes(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));
};
更改一个文件所提供的文件描述符引用的文件的时间戳。
简称 更改时间戳
语法:
复制代码 代码如下:
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));
};
推荐阅读
-
Node.js fs模块(文件模块)创建、删除目录(文件)读取写入文件流的方法
-
Node.js Koa2使用JWT进行鉴权的方法示例
-
node.JS的crypto加密模块使用方法详解(MD5,AES,Hmac,Diffie-Hellman加密)
-
了不起的node.js读书笔记之node.js中的特性_node.js
-
node.js读取文件到字符串的方法_node.js
-
Node.js中.pfx后缀文件的处理方法
-
node.js发送邮件email的方法详解
-
在Node.js下运用MQTT协议实现即时通讯及离线推送的方法
-
详解axios在node.js中的post使用
-
Nginx设置为Node.js的前端服务器方法总结