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

Forum Discussion

LuGas's avatar
LuGas
New member | Level 2
7 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?

4 Replies

  • Greg-DB's avatar
    Greg-DB
    Icon for Dropbox Community Moderator rankDropbox Community Moderator
    7 years ago

    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
    2 years ago

    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
    2 years ago

    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.

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!