We Want to Hear From You! What Do You Want to See on the Community? Tell us here!
Forum Discussion
bliss
9 years agoExplorer | Level 3
Rename folder and file in iOs Using APIV2
How we can rename a folder or file in the IOS using objective c. I am using apiv2.
Thanks in advance.!!1
The move method is an "RPC-style request", so you would use it like the samples in the documentation under "RPC-style request".
Specifically, it would look like:
[[client.filesRoutes move:@"/original_path" toPath:@"/new_path"] setResponseBlock:^(DBFILESMetadata *result, DBFILESRelocationError *routeError, DBRequestError *requestError) { if (result) { NSLog(@"%@\n", result); } else { NSLog(@"%@\n", routeError); NSLog(@"%@\n", requestError); } }];
3 Replies
Replies have been turned off for this discussion
- Greg-DB9 years ago
Dropbox Community Moderator
To rename any file or folder using the API v2 Objective-C SDK, you should use the move method:
https://dropbox.github.io/dropbox-sdk-obj-c/api-docs/latest/Classes/DBFILESUserAuthRoutes.html#/c:objc(cs)DBFILESUserAuthRoutes(im)move:toPath: - bliss9 years agoExplorer | Level 3
- (DBRpcTask<DBFILESMetadata *, DBFILESRelocationError *> *_Nonnull) move:(NSString *_Nonnull)fromPath toPath:(NSString *_Nonnull)toPath { }
can you pelase suggest how to use this method. I tried a lot.
- Greg-DB9 years ago
Dropbox Community Moderator
The move method is an "RPC-style request", so you would use it like the samples in the documentation under "RPC-style request".
Specifically, it would look like:
[[client.filesRoutes move:@"/original_path" toPath:@"/new_path"] setResponseBlock:^(DBFILESMetadata *result, DBFILESRelocationError *routeError, DBRequestError *requestError) { if (result) { NSLog(@"%@\n", result); } else { NSLog(@"%@\n", routeError); NSLog(@"%@\n", requestError); } }];
About Dropbox API Support & Feedback
Find help with the Dropbox API from other developers.6,036 PostsLatest Activity: 3 days 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!