(self, filepath)
| 141 | return metadata |
| 142 | |
| 143 | async def blob_exist(self, filepath): |
| 144 | blob_client = self.get_blob_client(filepath) |
| 145 | return await blob_client.exists() |
| 146 | |
| 147 | async def get_file_length(self, filepath): |
| 148 | blob_client = self.get_blob_client(filepath) |
no test coverage detected