Lines Matching refs:FileHandle
150 ### Class: `FileHandle`
156 A {FileHandle} object is an object wrapper for a numeric file descriptor.
158 Instances of the {FileHandle} object are created by the `fsPromises.open()`
161 All {FileHandle} objects are {EventEmitter}s.
163 If a {FileHandle} is not closed using the `filehandle.close()` method, it will
167 close {FileHandle}s. Node.js may change this behavior in the future.
175 The `'close'` event is emitted when the {FileHandle} has been closed and can no
276 If the `FileHandle` points to a character device that only supports blocking
365 * {number} The numeric file descriptor managed by the {FileHandle} object.
468 after the `FileHandle` is closed or closing.
499 close the `FileHandle` automatically. User code must still call the
519 The {FileHandle} has to support reading.
656 Change the file system timestamps of the object referenced by the {FileHandle}
779 The {FileHandle} has to support writing.
872 * `path` {string|Buffer|URL|FileHandle} filename or {FileHandle}
888 The `path` may be specified as a {FileHandle} that has been opened
1211 * Returns: {Promise} Fulfills with a {FileHandle} object.
1213 Opens a {FileHandle}.
1329 * `path` {string|Buffer|URL|FileHandle} filename or `FileHandle`
1401 Any specified {FileHandle} has to support reading.
1716 * `file` {string|Buffer|URL|FileHandle} filename or `FileHandle`
1735 Any specified {FileHandle} has to support writing.
2363 description: The `fd` option accepts FileHandle arguments.
2398 * `fd` {integer|FileHandle} **Default:** `null`
2492 description: The `fd` option accepts FileHandle arguments.
2525 * `fd` {integer|FileHandle} **Default:** `null`
7841 The promise-based APIs use a {FileHandle} object in place of the numeric
7936 error. In contrast, on Windows and FreeBSD, a file descriptor or a `FileHandle`