(name: string)
| 32 | } |
| 33 | |
| 34 | public deleteFile(name: string) { |
| 35 | const targetPath = path.normalize(path.join(StorageSubsystem.DATA_PATH, name)); |
| 36 | fs.removeSync(targetPath); |
| 37 | } |
| 38 | |
| 39 | public fileExists(name: string) { |
| 40 | const targetPath = path.normalize(path.join(StorageSubsystem.DATA_PATH, name)); |
no outgoing calls
no test coverage detected