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.
Asked
Active
Viewed 1,967 times
0
-
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 Answers
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.
-
that only I was using thought there might be something, but I think no. Anyways Thank you :) – Prashant Yadav Mar 17 '22 at 14:18