(p, opts)
| 994 | return this.realFs.createReadStream(realPath, opts); |
| 995 | } |
| 996 | createWriteStream(p, opts) { |
| 997 | const realPath = p !== null ? npath.fromPortablePath(p) : p; |
| 998 | return this.realFs.createWriteStream(realPath, opts); |
| 999 | } |
| 1000 | async realpathPromise(p) { |
| 1001 | return await new Promise((resolve, reject) => { |
| 1002 | this.realFs.realpath(npath.fromPortablePath(p), {}, this.makeCallback(resolve, reject)); |