fs.closeSync(fd)


关闭文件描述符。 返回 undefined

通过任何其他 fs 操作对当前正在使用的任何文件描述符 (fd) 调用 fs.closeSync(),则可能会导致未定义的行为。

有关更多详细信息,请参阅 POSIX close(2) 文档。

Closes the file descriptor. Returns undefined.

Calling fs.closeSync() on any file descriptor (fd) that is currently in use through any other fs operation may lead to undefined behavior.

See the POSIX close(2) documentation for more detail.