Reputation: 115
We are having a hugh set of images inside dropbox and manually downloading and uploading to S3 is not a practical method.Can anyone suggest the best method to transfer dropbox files with folder to s3 bucket.Java is the technology that we are planning to use. Thanks in advance.
Upvotes: 0
Views: 172
Reputation: 89
You can either write a program to copy the files from Dropbox to AWS s3.
Or
You can use a third-party tool.
DropBox
Here is the official GitHub project dropbox-sdk-java with code examples.
AWS
Here is the AWS Java SDK example code for upload-object
Full APIs references
Tools
There are third-party tools for doing this.
Here are two examples:
Upvotes: 0
Reputation: 318
There's no fix for this, since you don't have access to dropbox servers. If you did own the servers that the files were stored on, then you'd have this similar issue: How to upload files directly to Amazon S3 from a remote server?
Upvotes: 0