* Creates a symbolic link synchronously. * @param {string} target The symlink target * @param {string} path The symlink path * @param {string} [type] The symlink type (file, dir, junction)
(target, path, type)
| 555 | * @param {string} [type] The symlink type (file, dir, junction) |
| 556 | */ |
| 557 | symlinkSync(target, path, type) { |
| 558 | if (this.readonly) { |
| 559 | throw createEROFS('symlink', path); |
| 560 | } |
| 561 | throw new ERR_METHOD_NOT_IMPLEMENTED('symlinkSync'); |
| 562 | } |
| 563 | |
| 564 | // === WATCH OPERATIONS (optional, polling-based) === |
| 565 |