MCPcopy
hub / github.com/minio/minio-go / ListObjects

Method ListObjects

core.go:48–50  ·  view source on GitHub ↗

ListObjects - List all the objects at a prefix, optionally with marker and delimiter you can further filter the results.

(bucket, prefix, marker, delimiter string, maxKeys int)

Source from the content-addressed store, hash-verified

46// ListObjects - List all the objects at a prefix, optionally with marker and delimiter
47// you can further filter the results.
48func (c Core) ListObjects(bucket, prefix, marker, delimiter string, maxKeys int) (result ListBucketResult, err error) {
49 return c.listObjectsQuery(context.Background(), bucket, prefix, marker, delimiter, maxKeys, nil)
50}
51
52// ListObjectsV2 - Lists all the objects at a prefix, similar to ListObjects() but uses
53// continuationToken instead of marker to support iteration over the results.

Callers 10

cleanupBucketFunction · 0.45
cleanupVersionedBucketFunction · 0.45
mainFunction · 0.45
mainFunction · 0.45
mainFunction · 0.45
mainFunction · 0.45
mainFunction · 0.45
mainFunction · 0.45
mainFunction · 0.45

Calls 1

listObjectsQueryMethod · 0.80

Tested by 1