(p: string)
| 561 | }); |
| 562 | } |
| 563 | public existsSync(p: string): boolean { |
| 564 | try { |
| 565 | this.statSync(p, true); |
| 566 | return true; |
| 567 | } catch (e) { |
| 568 | return false; |
| 569 | } |
| 570 | } |
| 571 | public realpath(p: string, cache: {[path: string]: string}, cb: BFSCallback<string>): void { |
| 572 | if (this.supportsLinks()) { |
| 573 | // The path could contain symlinks. Split up the path, |