* Removes a file synchronously. * @param {string} path The file path
(path)
| 204 | * @param {string} path The file path |
| 205 | */ |
| 206 | unlinkSync(path) { |
| 207 | if (this.readonly) { |
| 208 | throw createEROFS('unlink', path); |
| 209 | } |
| 210 | throw new ERR_METHOD_NOT_IMPLEMENTED('unlinkSync'); |
| 211 | } |
| 212 | |
| 213 | /** |
| 214 | * Renames a file or directory. |