You might see that the Dropbox Community team have been busy working on some major updates to the Community itself! So, here is some info on what’s changed, what’s staying the same and what you can expect from the Dropbox Community overall.
Forum Discussion
Nue2
5 years agoExplorer | Level 3
What is the proper way to get "server_modified" date from DBFILESMetadata?
What is the proper way to get "server_modified" date from DBFILESMetadata in Objective-C API? There is no corresponding property in the current specification, but it seems that it exists in the descr...
- 5 years ago
You can access the server_modified property on a DBFILESFileMetadata (its not available on DBFILESMetadata itself) like this:
[[client.filesRoutes getMetadata:path] setResponseBlock:^(DBFILESMetadata * _Nullable result, DBFILESGetMetadataError * _Nullable routeError, DBRequestError * _Nullable networkError) { if (result) { if ([result isKindOfClass:[DBFILESFileMetadata class]]) { DBFILESFileMetadata *fileMetadata = (DBFILESFileMetadata *)result; NSLog(@"This is a file at path: %@ with server modified time: %@\n", fileMetadata.pathDisplay, fileMetadata.serverModified); } else { NSLog(@"Not a file."); // folder (or deleted, if setting includeDeleted:YES) } } else { // error handling } }];
Greg-DB
5 years agoDropbox Staff
You can access the server_modified property on a DBFILESFileMetadata (its not available on DBFILESMetadata itself) like this:
[[client.filesRoutes getMetadata:path] setResponseBlock:^(DBFILESMetadata * _Nullable result, DBFILESGetMetadataError * _Nullable routeError, DBRequestError * _Nullable networkError) { if (result) { if ([result isKindOfClass:[DBFILESFileMetadata class]]) { DBFILESFileMetadata *fileMetadata = (DBFILESFileMetadata *)result; NSLog(@"This is a file at path: %@ with server modified time: %@\n", fileMetadata.pathDisplay, fileMetadata.serverModified); } else { NSLog(@"Not a file."); // folder (or deleted, if setting includeDeleted:YES) } } else { // error handling } }];
About Dropbox API Support & Feedback
Find help with the Dropbox API from other developers.
5,879 PostsLatest Activity: 2 hours agoIf 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!