Dropbox Integration with iOS

dropbox, ios

Solution

Yes. Look at the Dropbox documentation for iOS here.

Quick example:

DBRestClient *dbClient = [[DBRestClient alloc] initWithSession:[DBSession sharedSession]];
[dbClient moveFrom:fromPath toPath:toPath];  // Rename
[dbClient deletePath:path];                  // Delete

Problem

Does Dropbox API for iOS provides the functionality for renaming the folder / files in the Dropbox. Also does it supports functionality for deleting the folder / files from iOS? Thanks in advance

Original source