Your workflow is unique 👨‍💻 -  tell us how you use Dropbox here.

Forum Discussion

le h.'s avatar
le h.
New member | Level 1
9 years ago

How to download a file which I want to use processbar for that?

I want to use processbar, folderpicker for downloading.

This code just download. It not support for processbar, folderpicker.... and show a message if finished downloading.

public async void Download(string token, string path)
{
using (var dbx = new DropboxClient(token))
{
var download = await dbx.Files.DownloadAsync(path);
}
}

5 Replies

Replies have been turned off for this discussion
  • Greg-DB's avatar
    Greg-DB
    Icon for Dropbox Community Moderator rankDropbox Community Moderator
    9 years ago

    The Dropbox.NET SDK doesn't currently offer a way to get the progress of a download, but I'll be sure to pass this along as a feature request. 

    It also doesn't offer a way to download folders in bulk, so you'll need to iterate through to download each desired file.

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

    Actually, for reference, you can track progress if you use GetContentAsStreamAsync. E.g., you can do something like:

     var response = await client.Files.DownloadAsync(path);
    ulong fileSize = response.Response.Size;
    const int bufferSize = 1024 * 1024;

    var buffer = new byte[bufferSize];

    using (var stream = await response.GetContentAsStreamAsync())
    {
        using (var file = new FileStream("Test", FileMode.OpenOrCreate))
        {
            var length = stream.Read(buffer, 0, bufferSize);

            while (length > 0)
            {
                file.Write(buffer, 0, length);
                var percentage = 100 * (ulong)file.Length / fileSize;
                // Update progress bar with the percentage.
                // progressBar.Value = (int)percentage
                Console.WriteLine(percentage);

                length = stream.Read(buffer, 0, bufferSize);
            }
        }
    }

     

     

  • le h.'s avatar
    le h.
    New member | Level 1
    9 years ago

    I have tried it but I don't know where is file be saved?

    public async void Download(string token, string path)
    {
    using (var dbx = new DropboxClient(token))
    {
    var download = await dbx.Files.DownloadAsync(path);
    }
    }

     

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

    In your sample code, the file isn't saved anywhere. The data is just available via the download object.

    In my sample, the file is saved to the path "Test", but if you use that you should of course change that as desired.

About Dropbox API Support and Feedback

Node avatar for Dropbox API Support and Feedback
Get help with the Dropbox API from fellow developers and experts.

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!