Learn how to make the most out of the Dropbox Community here 💙!

Forum Discussion

Robert S.138's avatar
Robert S.138
Helpful | Level 7
9 years ago
Solved

Getting File Metadata after doing upload - Android

To upload in Android I am using sDbxClient.files().uploadBuilder(pathName) .withMode(WriteMode.OVERWRITE) .uploadAndFinish(inputStream); which returns, what? The docs say it returns t...
  • Greg-DB's avatar
    9 years ago

    R is the response, containing the metadata of the uploaded file. So, for example in this case you could do something like:

     

    FileInputStream inputStream = new FileInputStream(localPath);
    try {
        FileMetadata fileMetadata = client.files().uploadBuilder(remotePath)
                .withMode(WriteMode.OVERWRITE)
                .uploadAndFinish(inputStream);
        System.out.println(fileMetadata.getName());
        System.out.println(fileMetadata.getServerModified());
    } finally {
        inputStream.close();
    }

About Dropbox API Support & Feedback

Node avatar for Dropbox API Support & Feedback
Find help with the Dropbox API from other developers.5,975 PostsLatest Activity: 5 years ago
366 Following

If you need more help you can view your support options (expected response time for an email or ticket is 24 hours), or contact us on X or Facebook.

For more info on available support options for your Dropbox plan, see this article.

If you found the answer to your question in this Community thread, please 'like' the post to say thanks and to let us know it was useful!