(path: string)
| 308 | return this.adapterForPath(path).deletePath(path); |
| 309 | } |
| 310 | public readPath (path: string) { |
| 311 | return this.adapterForPath(path).readPath(path); |
| 312 | } |
| 313 | |
| 314 | public writeToPath (path: string, content: any, binary?: boolean) { |
| 315 |
nothing calls this directly
no test coverage detected