You might see that the Dropbox Community team have been busy working on some major updates to the Community itself! So, here is some info on what’s changed, what’s staying the same and what you can expect from the Dropbox Community overall.

Forum Discussion

kaftanati's avatar
kaftanati
Helpful | Level 6
8 years ago

Android app "Dropbox" want added downloaded files through Android Dropbox API

I use Android API v2 for downloading folder files: *** return mDbxClient.files().listFolder(params[0]); *** *** OutputStream outputStream = new FileOutputStream(file); mDbxClient.files().downlo...
  • Greg-DB's avatar
    8 years ago
    When you use that download method, the file data will be downloaded to whatever stream you supply. In this case, it's your "outputStream" variable, which is a "FileOutputStream" for "file". That being the case, to avoid this I recommend sending the file directly to the desired location, instead of using the Downloads folder as temporary storage.