I need help in realise downloading file from Dropbox folder on Visual Basic 2015. I found example code only on ASP.NET, but I can`t translate it to Visual Basic code.
async Task Download(DropboxClient dbx, string folder, string file)
{
using (var response = await dbx.Files.DownloadAsync(folder + "/" + file))
{
Console.WriteLine(await response.GetContentAsStringAsync());
}
}
I have Dropbox account and local dropbox client.
I need read (only) file from my folder.
How can I get path to file ? How to save local copy if I need.
Best regards, Alex.