Need to see if your shared folder is taking up space on your dropbox 👨‍💻? Find out how to check here.

Forum Discussion

Giordano58's avatar
Giordano58
Explorer | Level 3
9 years ago

problems uploading text files iOS

Hi everbody,

 

in order to upgrade my app to Dropbox 2 I was trying upload and download festures.

While download seems to work I have some problems with uploading.

I am working with textual file with a small size, maximum 1 MB.

I followed the tutorial but after the upload is finished I only see on dropbox an empty small file of about 190 byte. It seems it is not able to upload the content of the file. Here is my code where db is the path of the file to upload. Thanks very much or the help.

 

NSData *fileData = [db dataUsingEncoding:NSUTF8StringEncoding allowLossyConversion:NO];
DBFILESWriteMode *mode = [[DBFILESWriteMode alloc] initWithOverwrite];
NSString *pathToSave = [[_startDirectory stringByAppendingString:@"/"] stringByAppendingString:file];
[[[userClient.filesRoutes uploadData:pathToSave mode:mode autorename:@(YES) clientModified:nil mute:@(NO) inputData:fileData] 
setResponseBlock:^(DBFILESFileMetadata *result, DBFILESUploadError *routeError, DBRequestError *networkError) {
if (result) {
NSLog(@"result:%@\n", result);}
                               else {
                                   NSLog(@"%@\n%@\n", routeError, networkError);
                               }
                           }] setProgressBlock:^(int64_t bytesUploaded, int64_t totalBytesUploaded, int64_t totalBytesExpectedToUploaded) {
                               NSLog(@"progress:\n%lld\n%lld\n%lld\n", bytesUploaded, totalBytesUploaded, totalBytesExpectedToUploaded);
                           }];

 

2 Replies

  • Greg-DB's avatar
    Greg-DB
    Icon for Dropbox Community Moderator rankDropbox Community Moderator
    9 years ago
    I can't see what `db` is in your code, but the rest of the code doesn't look obviously wrong. To troubleshoot this, can you first check whether or not `fileData` has the expected length when calling `uploadData`?
  • Giordano58's avatar
    Giordano58
    Explorer | Level 3
    9 years ago

    Hi Greg, thanks for the answer but I solved the problem making use of the following method:

     

    [userClient.filesRoutes uploadUrl:pathToSave inputUrl:db]

     

    Thanks again and regards,

    Giordano

About Dropbox API Support & Feedback

Node avatar for Dropbox API Support & Feedback
Find help with the Dropbox API from other developers.

The Dropbox Community team is active from Monday to Friday. We try to respond to you as soon as we can, usually within 2 hours.

If you need more help you can view your support options (expected response time for an email or ticket is 24 hours), or contact us on X, Facebook or Instagram.

For more info on available support options for your Dropbox plan, see this article.

If you found the answer to your question in this Community thread, please 'like' the post to say thanks and to let us know it was useful!