次の方法でドロップボックスからファイルを保存しようとしています:
NSString *fileName = [NSString stringWithFormat:@"/newFile.json"];
// Do any additional setup after loading the view, typically from a nib.
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory,
NSUserDomainMask, YES);
NSString *documentsDirectory = [paths objectAtIndex:0];
NSString* path2 = [documentsDirectory stringByAppendingPathComponent:
[NSString stringWithFormat:@"%@", fileName]];
[[self restClient] loadFile:fileName intoPath:path2];
ファイルは apps/appname/sandbox/newFile.json の下にあります
しかし、私はこのエラーが発生します:
2012-05-12 21:05:46.824 クイック ホームワーク & ビジネス [934:707] [警告] DropboxSDK: /1/files/sandbox/newFile.json へのリクエスト中にエラーが発生しました - ファイルが見つかりません
しかし、ファイルはそこにあります!!