Runs "list_prefixed_files" and returns their paths Panic's on error
(
url: &str,
store: &dyn ObjectStore,
prefix: Option<Path>,
file_extension: &str,
)
| 1046 | /// |
| 1047 | /// Panic's on error |
| 1048 | async fn list_prefixed_files( |
| 1049 | url: &str, |
| 1050 | store: &dyn ObjectStore, |
| 1051 | prefix: Option<Path>, |
| 1052 | file_extension: &str, |
| 1053 | ) -> Result<Vec<String>> { |
| 1054 | try_list_prefixed_files(url, store, prefix, file_extension).await |
| 1055 | } |
| 1056 | |
| 1057 | /// Runs "list_prefixed_files" and returns their paths |
| 1058 | async fn try_list_prefixed_files( |
nothing calls this directly
no test coverage detected
searching dependent graphs…