Function: lutime()
lutime(
path,atime,mtime):Promise<void>
Change the access and modification time of a file. If the path is a link it changes the ownership of the link itself. See futimes(2)
Parameters
path
string
Path to the file.
atime
Date
The new file access time.
mtime
Date
The new file modification time.
Returns
Promise<void>