Forum Discussion

LuGas's avatar
LuGas
New member | Level 2
6 years ago

Download entire folder from Dropbox using Vb. NET

Hi guys!
I'm trying to write code to create a program that will download and upload files and folders from/to Dropbox automatically.

When I need to download a single file there's no problem using X.files.downloadAsync("path", await X.GetContentAsByteArrayAsync), but when I need to download an entire folder I don't know how to do it, I can't use the same instruction...

Someone know how to solve this issue?

  • Greg-DB's avatar
    Greg-DB
    Icon for Dropbox Staff rankDropbox Staff

    If you want to download an entire folder using the .NET SDK, you have two options:

    1. Use the DownloadAsync method, calling once per file inside the folder. You can use the ListFolderAsync and ListFolderContinueAsync methods to get the file listing.
    2. Use the DownloadZipAsync method to download the entire folder, as long as its contents are under the documented size and file count limits. With this method, you'd then need to unzip the resulting data to access the contents. The Dropbox SDK itself doesn't offer an unzipping method, so you may need a system method or a different library to do that.
    • erich_e's avatar
      erich_e
      New member | Level 2

      Silly question (RE: Option 2 "Use the DownloadZipAsync method to download the entire folder...").  To where does DownloadZipAsync(...) download the zip file??

       

      The DownloadFileAsync() method accepts an argument containing the download target folder, but I see no such option in for the argument to DownloadZipAsync(...).

      • Здравко's avatar
        Здравко
        Legendary | Level 20

        Hi erich_e,

        In both cases (downloading a regular file of any kind or a folder as a zip) there is stream that may be use as you would like. Of course you may redirect/copy this stream to another file stream that refers to file named as you like. Is there something that prevent you do so?

        Good luck.

About Dropbox API Support & Feedback

Node avatar for Dropbox API Support & Feedback
Find help with the Dropbox API from other developers.5,949 PostsLatest Activity: 51 minutes ago
352 Following

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 or Facebook.

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!