(path: string)
| 267 | } |
| 268 | |
| 269 | public async readBinaryToFile (path: string) { |
| 270 | return this.adapterForPath(path).readBinaryToFile(path) |
| 271 | } |
| 272 | |
| 273 | public async renameFile (path: string, newPath: string) { |
| 274 | return this.adapterForPath(path).renameFile(path, newPath) |
nothing calls this directly
no test coverage detected