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

Function main

examples/s3/removeobjects.go:31–72  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

29)
30
31func main() {
32 // Note: YOUR-ACCESSKEYID, YOUR-SECRETACCESSKEY, my-bucketname and my-objectname
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 log.Fatalln(err)
46 }
47
48 objectsCh := make(chan minio.ObjectInfo)
49
50 // Send object names that are needed to be removed to objectsCh
51 go func() {
52 defer close(objectsCh)
53 // List all objects from a bucket-name with a matching prefix.
54 opts := minio.ListObjectsOptions{Prefix: "my-prefixname", Recursive: true}
55 for object := range s3Client.ListObjects(context.Background(), "my-bucketname", opts) {
56 if object.Err != nil {
57 log.Fatalln(object.Err)
58 }
59 objectsCh <- object
60 }
61 }()
62
63 // Call RemoveObjects API
64 errorCh := s3Client.RemoveObjects(context.Background(), "my-bucketname", objectsCh, minio.RemoveObjectsOptions{})
65
66 // Print errors received from RemoveObjects API
67 for e := range errorCh {
68 log.Fatalln("Failed to remove " + e.ObjectName + ", error: " + e.Err.Error())
69 }
70
71 log.Println("Success")
72}

Callers

nothing calls this directly

Calls 4

NewStaticV4Function · 0.92
RemoveObjectsMethod · 0.80
ListObjectsMethod · 0.45
ErrorMethod · 0.45

Tested by

no test coverage detected