* Gets stats for a path synchronously without following symlinks. * @param {string} filePath The path to stat * @param {object} [options] Options * @returns {Stats}
(filePath, options)
| 247 | * @returns {Stats} |
| 248 | */ |
| 249 | lstatSync(filePath, options) { |
| 250 | const providerPath = this.#toProviderPath(filePath); |
| 251 | return this[kProvider].lstatSync(providerPath, options); |
| 252 | } |
| 253 | |
| 254 | /** |
| 255 | * Reads a file synchronously. |