One month down in 2025: How are your resolutions coming along? Check out how to get back on track here.
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-DB
Dropbox Staff
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:- 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-DB
Dropbox 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,950 PostsLatest Activity: 2 minutes ago
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!