-
Multi-File support in DBChooser for iOS
Is there a flag for supporting multi file selection in DBChooser for iOS? I have everything working but there's no way to select multiple files. Thanks
-
Folders with lots of files failing
When I call listFolder like in the example code, *response is often nil. This only happens with large numbers of files (over 1800, with some people 3000+ files). DBFILESListFolderResult *response is nil. This is a problem for my app. [[client.filesRoutes listFolder:@"/test/path/in/Dropbox/account"]…
-
Dropbox V2, shared folders not listed?
When I query a folder, shared folders do not appear in the list. How do I display them? DBUserClient *client = [DBClientsManager authorizedClient]; if (client != nil) { [[client.filesRoutes listFolder:dbPath] setResponseBlock:^(DBFILESListFolderResult *result, DBFILESListFolderError *routeError, DBRequestError *error) { if…
-
DBFILESWriteMode - please explain
Overwrite I know. Please explain isUpdate and isAdd. For example, what if I want to try and write a huge list of files to a dropbox folder. Is there a mode where I don't have to look at every file in the destination folder and compare modified dates before uploading? What I mean is there a way to do a batch upload of all…
-
How to upload to root with sample code
For the "advanced upload case for "batch" uploading a large number of files" how do you specify root? For this line: DBFILESCommitInfo *commitInfo = [[DBFILESCommitInfo alloc] initWithPath:@"/output/path/in/Dropbox"]; initWithPath - I have tried @/, @"" and other combinations. They all fail with malformed path or other…