fs.lchownSync(path, uid, gid) Synchronous lchown(2). Returns undefined.
fs.lchown(path, uid, gid, callback) Asynchronous lchown(2). No arguments other than a possible exception are given to the completion callback.
fs.lchmodSync(path, mode) Synchronous lchmod(2). Returns undefined.
fs.lchmod(path, mode, callback) Asynchronous lchmod(2). No arguments other than a possible exception are given to the completion callback. Only available on Mac OS X.
fs.futimesSync(fd, atime, mtime) Synchronous version of fs.futimes(). Returns undefined.
fs.futimes(fd, atime, mtime, callback) Change the file timestamps of a file referenced by the supplied file descriptor.
fs.ftruncateSync(fd, len) Synchronous ftruncate(2). Returns undefined.
fs.ftruncate(fd, len, callback) Asynchronous ftruncate(2). No arguments other than a possible exception are given to the completion callback.
fs.fsyncSync(fd) Synchronous fsync(2). Returns undefined.
fs.fsync(fd, callback) Asynchronous fsync(2). No arguments other than a possible exception are given to the completion callback.
Page 49 of 81