fs.lutimes(path, atime, mtime, callback)
path<string> | <Buffer> | <URL>atime<number> | <string> | <Date>mtime<number> | <string> | <Date>callback<Function>err<Error>
以与 fs.utimes() 相同的方式更改文件的访问和修改时间,区别在于如果路径指向符号链接,则不会解除引用链接:相反,将更改符号链接本身的时间戳。
【Changes the access and modification times of a file in the same way as
fs.utimes(), with the difference that if the path refers to a symbolic
link, then the link is not dereferenced: instead, the timestamps of the
symbolic link itself are changed.】
完成回调函数不会传入除可能的异常之外的其他参数。
【No arguments other than a possible exception are given to the completion callback.】