I am currently developing an application which uploads files to the App Folder in the Dropbox Account of the user. I am using the iOS SDK of Dropbox version 1.1. The problem I am facing is that I want to get the link of the files just uploaded so that I can share them with others.
For that, I came to know that the uploaded files should be inside the Public directory in my Dropbox account. I came across this following link
Get Public Link of Dropbox Files
I wanted to know how can I move the files from inside the /Apps/MyAppName/File location to the Public location. I have come across the following method in the API -
- (void)moveFrom:(NSString*)from_path toPath:(NSString *)to_path;
This method is located in the file DBRestClient.h in the SDK. What should the value which needs to be passed on as parameters to this function be? I apologize beforehand if you find my question to be trivial, but I really wanted to know the solution for this problem.