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)
| 46 | // ListObjects - List all the objects at a prefix, optionally with marker and delimiter |
| 47 | // you can further filter the results. |
| 48 | func (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. |