()
| 29 | ) |
| 30 | |
| 31 | func main() { |
| 32 | // Note: YOUR-ACCESSKEYID, YOUR-SECRETACCESSKEY, my-bucketname and my-prefixname |
| 33 | // are dummy values, please replace them with original values. |
| 34 | |
| 35 | // Requests are always secure (HTTPS) by default. Set secure=false to enable insecure (HTTP) access. |
| 36 | // This boolean value is the last argument for New(). |
| 37 | |
| 38 | // New returns an Amazon S3 compatible client object. API compatibility (v2 or v4) is automatically |
| 39 | // determined based on the Endpoint value. |
| 40 | s3Client, err := minio.New("s3.amazonaws.com", &minio.Options{ |
| 41 | Creds: credentials.NewStaticV4("YOUR-ACCESSKEYID", "YOUR-SECRETACCESSKEY", ""), |
| 42 | Secure: true, |
| 43 | }) |
| 44 | if err != nil { |
| 45 | fmt.Println(err) |
| 46 | return |
| 47 | } |
| 48 | |
| 49 | // List 'N' number of objects from a bucket-name with a matching prefix. |
| 50 | listObjectsN := func(bucket, prefix string, recursive bool, N int) (objsInfo []minio.ObjectInfo, err error) { |
| 51 | ctx, cancel := context.WithCancel(context.Background()) |
| 52 | // Indicate ListObjects go-routine to exit and stop feeding the objectInfo channel. |
| 53 | defer cancel() |
| 54 | i := 1 |
| 55 | opts := minio.ListObjectsOptions{ |
| 56 | UseV1: true, |
| 57 | Prefix: prefix, |
| 58 | Recursive: recursive, |
| 59 | } |
| 60 | for object := range s3Client.ListObjects(ctx, bucket, opts) { |
| 61 | if object.Err != nil { |
| 62 | return nil, object.Err |
| 63 | } |
| 64 | i++ |
| 65 | // Verify if we have printed N objects. |
| 66 | if i == N { |
| 67 | break |
| 68 | } |
| 69 | objsInfo = append(objsInfo, object) |
| 70 | } |
| 71 | return objsInfo, nil |
| 72 | } |
| 73 | |
| 74 | // List recursively first 100 entries for prefix 'my-prefixname'. |
| 75 | recursive := true |
| 76 | objsInfo, err := listObjectsN("my-bucketname", "my-prefixname", recursive, 100) |
| 77 | if err != nil { |
| 78 | fmt.Println(err) |
| 79 | } |
| 80 | |
| 81 | // Print all the entries. |
| 82 | fmt.Println(objsInfo) |
| 83 | } |
nothing calls this directly
no test coverage detected