(path: Path)
| 95 | } |
| 96 | |
| 97 | exists(path: Path): Observable<boolean> { |
| 98 | return observableFrom(exists(getSystemPath(path))); |
| 99 | } |
| 100 | |
| 101 | isDirectory(path: Path): Observable<boolean> { |
| 102 | return this.stat(path).pipe(map((stat) => stat.isDirectory())); |
nothing calls this directly
no test coverage detected