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

Method ListIncompleteUploads

api-list.go:850–852  ·  view source on GitHub ↗

ListIncompleteUploads - List incompletely uploaded multipart objects. ListIncompleteUploads lists all incompleted objects matching the objectPrefix from the specified bucket. If recursion is enabled it would list all subdirectories and all its contents. Your input parameters are just bucketName, o

(ctx context.Context, bucketName, objectPrefix string, recursive bool)

Source from the content-addressed store, hash-verified

848// fmt.Println(message)
849// }
850func (c *Client) ListIncompleteUploads(ctx context.Context, bucketName, objectPrefix string, recursive bool) <-chan ObjectMultipartInfo {
851 return c.listIncompleteUploads(ctx, bucketName, objectPrefix, recursive)
852}
853
854// contextCanceled returns whether a context is canceled.
855func contextCanceled(ctx context.Context) bool {

Callers 5

testFunctionalFunction · 0.95
testFunctionalV2Function · 0.95
cleanupBucketFunction · 0.80
cleanupVersionedBucketFunction · 0.80
mainFunction · 0.80

Calls 1

listIncompleteUploadsMethod · 0.95

Tested by

no test coverage detected