0

How to download multiple files from minio server in java by passing bucket name and file name. Suppose one bucket is having file abc1.txt and abc2.text and so on.I want to get more then one file.

Martijn Pieters
  • 1,048,767
  • 296
  • 4,058
  • 3,343
  • in python we are use client.list_objects(bucket.name,recursive=True) and recursive=True will return all files and folders name. something like this maybe been in java – hn_tired Mar 25 '22 at 14:06

1 Answers1

0

There are no bulk downloads with the single request in S3 API, you should call GetObject for each object. You may call GetObject in parallel.

x00
  • 13,643
  • 3
  • 16
  • 40
Ali
  • 1