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
bliss
8 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); } }];
- Greg-DBDropbox StaffTo 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:- blissExplorer | 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-DBDropbox Staff
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.
5,911 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!