目前我在 iPhone 中使用简单的 Dropbox 应用程序,使用 Dropbox_SDK 开发这个应用程序,我必须在 drop box 路径文件夹中存储一个文件并且它的工作正常,然后我尝试从 Dropbox 中检索(下载)该文件并存储在里面iPhone设备,但是设备路径,我不知道,如何设置设备路径?请帮我
提前致谢
我试过这个供你参考:
- (void)viewDidLoad
{
NSString *DropBoxpath = @"/Public/sam.txt";
NSString *devicepath = [[NSBundle mainBundle] pathForResource:@"Info" ofType:@"plist"];
[[self restClient] loadFile:DropBoxpath destDir:devicepath];
}
- (void)restClient:(DBRestClient*)client loadedFile:(NSString*)localPath
{
NSLog(@"File loaded into path: %@", localPath);
}
- (void)restClient:(DBRestClient*)client loadFileFailedWithError:(NSError*)error {
NSLog(@"There was an error loading the file - %@", error);
}