fs.truncate(path[, len], callback)
异步的 truncate(2)
。
除了可能的异常之外,没有为完成回调提供任何参数。
文件描述符也可以作为第一个参数传入。
在这种情况下,fs.ftruncate()
被调用。
不推荐传入文件描述符,并且可能会导致将来抛出错误。
Asynchronous truncate(2)
. No arguments other than a possible exception are
given to the completion callback. A file descriptor can also be passed as the
first argument. In this case, fs.ftruncate()
is called.
Passing a file descriptor is deprecated and may result in an error being thrown in the future.