You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am trying to learn if there is an option to use S3TransferManager copy for multiple objects which fall under commonPrefix that we get from a s3 list object v2 API.
AWS s3 cp command does that .
please recommend the best possible way to copy files from a bucket to another with below structure
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
I am trying to learn if there is an option to use S3TransferManager copy for multiple objects which fall under commonPrefix that we get from a s3 list object v2 API.
AWS s3 cp command does that .
please recommend the best possible way to copy files from a bucket to another with below structure
s3://bucket-1/users/uuid/2022/03/123/dummy1.txt
/123/dummy2.txt
/1234/dummy1.txt
/1234/dummy2.txt
s3 list objects v2 returns below as common prefix:
if i have to copy all files under this prefix in a single command
aws s3 cp s3://bucket-1/users/uuid/2022/03/123/ s3://bucket-2/test
all files gets copied
Is there an equivalent java API for the same
Beta Was this translation helpful? Give feedback.
All reactions