(self, file_code: FileCodes)
| 881 | await self.operator.write(save_path, content) |
| 882 | |
| 883 | async def delete_file(self, file_code: FileCodes): |
| 884 | await self.operator.delete(await file_code.get_file_path()) |
| 885 | |
| 886 | async def get_file_url(self, file_code: FileCodes): |
| 887 | return await get_file_url(file_code.code) |
nothing calls this directly
no test coverage detected