* Creates a directory synchronously. * @param {string} path The directory path * @param {object} [options] Options
(path, options)
| 158 | * @param {object} [options] Options |
| 159 | */ |
| 160 | mkdirSync(path, options) { |
| 161 | if (this.readonly) { |
| 162 | throw createEROFS('mkdir', path); |
| 163 | } |
| 164 | throw new ERR_METHOD_NOT_IMPLEMENTED('mkdirSync'); |
| 165 | } |
| 166 | |
| 167 | /** |
| 168 | * Removes a directory. |