list abstract method

Stream<BucketEntry> list({
  1. String? prefix,
  2. String? delimiter,
})

List objects in the bucket.

Listing operates like a directory listing, despite the object namespace being flat. Unless delimiter is specified, the character / is being used to separate object names into directory components. To list objects recursively, the delimiter can be set to empty string.

Retrieves a list of objects and directory components starting with prefix.

Returns a Stream of BucketEntry. Each element of the stream represents either an object or a directory component.

Implementation

Stream<BucketEntry> list({String? prefix, String? delimiter});