(folderPath: string, removeBasePath: boolean)
| 238 | } |
| 239 | |
| 240 | readFolderIncludingEmptyIfExists(folderPath: string, removeBasePath: boolean): Array<string> { |
| 241 | if(!this.folderExists(folderPath)) return [] |
| 242 | |
| 243 | return this.readFolderIncludingEmpty(folderPath, removeBasePath) |
| 244 | } |
| 245 | |
| 246 | readFolderIncludingEmpty(folderPath: string, removeBasePath: boolean): Array<string> { |
| 247 | const removeFromPathString = removeBasePath ? folderPath : '' |
no test coverage detected