(path: string)
| 143 | return this._base.exists(this._fullPath(path)); |
| 144 | } |
| 145 | get(path: string): FileEntry | null { |
| 146 | const entry = this._base.get(this._fullPath(path)); |
| 147 | |
| 148 | return entry && new ScopedFileEntry(entry, this._root.scope); |
| 149 | } |
| 150 | getDir(path: string): DirEntry { |
| 151 | const entry = this._base.getDir(this._fullPath(path)); |
| 152 |