(oldPath: string, newPath: string, cb: BFSOneArgCallback)
| 801 | } |
| 802 | |
| 803 | public rename(oldPath: string, newPath: string, cb: BFSOneArgCallback): void { |
| 804 | try { |
| 805 | this.renameSync(oldPath, newPath); |
| 806 | cb(); |
| 807 | } catch (e) { |
| 808 | cb(e); |
| 809 | } |
| 810 | } |
| 811 | |
| 812 | public stat(p: string, isLstat: boolean | null, cb: BFSCallback<Stats>): void { |
| 813 | try { |
nothing calls this directly
no test coverage detected