Bulk upload and download using OCI Java SDK

1.4k Views Asked by At

I've gone through example here for single file upload and download. https://github.com/oracle/oci-java-sdk/blob/master/bmc-examples/src/main/java/UploadObjectExample.java However, I'm not finding any java OCI API for bulk upload/download of multiple files. I know this is possible if we use OCI CLI, but the requirement here is using Java APIs. Any suggestions would help.

1

There are 1 best solutions below

3
On

There is no built-in OCI API for bulk uploading/downloading files. You would need to do something similar to the example you linked to above, in a loop, for all the files you need to upload/download.