Commit bd5d4a5 1 parent 5e9919f commit bd5d4a5 Copy full SHA for bd5d4a5
File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -716,7 +716,7 @@ pub trait ObjectStore: std::fmt::Display + Send + Sync + Debug + 'static {
716
716
/// List all the objects with the given prefix.
717
717
///
718
718
/// Prefixes are evaluated on a path segment basis, i.e. `foo/bar/` is a prefix of `foo/bar/x` but not of
719
- /// `foo/bar_baz/x`.
719
+ /// `foo/bar_baz/x`. List is recursive, i.e. `foo/bar/more/x` will be included.
720
720
///
721
721
/// Note: the order of returned [`ObjectMeta`] is not guaranteed
722
722
fn list ( & self , prefix : Option < & Path > ) -> BoxStream < ' _ , Result < ObjectMeta > > ;
@@ -743,7 +743,7 @@ pub trait ObjectStore: std::fmt::Display + Send + Sync + Debug + 'static {
743
743
/// metadata.
744
744
///
745
745
/// Prefixes are evaluated on a path segment basis, i.e. `foo/bar/` is a prefix of `foo/bar/x` but not of
746
- /// `foo/bar_baz/x`.
746
+ /// `foo/bar_baz/x`. List is not recursive, i.e. `foo/bar/more/x` will not be included.
747
747
async fn list_with_delimiter ( & self , prefix : Option < & Path > ) -> Result < ListResult > ;
748
748
749
749
/// Copy an object from one path to another in the same object store.
You can’t perform that action at this time.
0 commit comments