(path: Path)
| 204 | } |
| 205 | |
| 206 | exists(path: Path): Observable<boolean> { |
| 207 | return new Observable((obs) => { |
| 208 | obs.next(existsSync(getSystemPath(path))); |
| 209 | obs.complete(); |
| 210 | }); |
| 211 | } |
| 212 | |
| 213 | isDirectory(path: Path): Observable<boolean> { |
| 214 | return this.stat(path).pipe(map((stat) => stat.isDirectory())); |
nothing calls this directly
no test coverage detected