* Opens a file synchronously and returns a file handle. * @param {string} path The file path (relative to provider root) * @param {string} flags The open flags ('r', 'r+', 'w', 'w+', 'a', 'a+') * @param {number} [mode] The file mode (for creating files) * @throws {ERR_METHOD_NOT_IMPLEMEN
(path, flags, mode)
| 74 | * @throws {ERR_METHOD_NOT_IMPLEMENTED} When not implemented by subclass |
| 75 | */ |
| 76 | openSync(path, flags, mode) { |
| 77 | throw new ERR_METHOD_NOT_IMPLEMENTED('openSync'); |
| 78 | } |
| 79 | |
| 80 | /** |
| 81 | * Gets stats for a path. |
no outgoing calls