(directoryName: string)
| 75 | } |
| 76 | |
| 77 | getDirectories?(directoryName: string): string[] { |
| 78 | return this.fileManager.getDirectories(this.fileManager.resolvePath(directoryName)).map((p) => p.absolutePath); |
| 79 | } |
| 80 | |
| 81 | realpath?(path: string): string { |
| 82 | return this.fileManager.resolvePath(path).absolutePath; |
no test coverage detected