Runs "list_prefixed_files" with no prefix to list all files and returns their paths Panic's on error
(
url: &str,
store: &dyn ObjectStore,
file_extension: &str,
)
| 1035 | /// |
| 1036 | /// Panic's on error |
| 1037 | async fn list_all_files( |
| 1038 | url: &str, |
| 1039 | store: &dyn ObjectStore, |
| 1040 | file_extension: &str, |
| 1041 | ) -> Result<Vec<String>> { |
| 1042 | try_list_prefixed_files(url, store, None, file_extension).await |
| 1043 | } |
| 1044 | |
| 1045 | /// Runs "list_prefixed_files" and returns their paths |
| 1046 | /// |
searching dependent graphs…