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)
| 848 | // fmt.Println(message) |
| 849 | // } |
| 850 | func (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. |
| 855 | func contextCanceled(ctx context.Context) bool { |
no test coverage detected