We Want to Hear From You! What Do You Want to See on the Community? Tell us here!
Forum Discussion
Billy S.
10 years agoNew member | Level 1
How to retrieve metadata attributes Java Core API v2
Hi,
Porting my Android app from Core API v1 to v2, I wonder how to get to metadata attributes such as modified time (server_modified / client_modified), version number, etc. from Java Core API v2. I am using syntax such as below to retrieve delta. The question is how to get the above attributes from metadata, which should be available according to v2 documentation. Could you provide an example how to make such calls? Thanks in advance.
ListFolderResult result = client.files().listFolder("");
for (Metadata metadata : result.getEntries()) {
...
}
4 Replies
- Greg-DB10 years ago
Dropbox Community Moderator
Hi Billy, a Metadata object like in your sample can be for either a file, folder, or deleted object, so you need cast it to the respective type, FileMetadata, FolderMetadata, DeletedMetadata, to access the properties specific to each.
For example, you can do something like this:
System.out.println(metadata.getPathLower());
if (metadata instanceof FileMetadata) {
System.out.println(((FileMetadata) metadata).getServerModified());
System.out.println(((FileMetadata) metadata).getClientModified());
System.out.println(((FileMetadata) metadata).getRev());
} - Billy S.10 years agoNew member | Level 1
Thanks.
- inttestsme19 years agoExplorer | Level 3
Hi,
This works best for me. Thank you!
- alfazraza8 years agoExplorer | Level 4
For folder Metdata this worked for me...
About Dropbox API Support & Feedback
Find help with the Dropbox API from other developers.6,036 PostsLatest Activity: 9 months ago
The Dropbox Community team is active from Monday to Friday. We try to respond to you as soon as we can, usually within 2 hours.
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!