从Dropbox c#下载文件
本文关键字:文件 下载 Dropbox | 更新日期: 2023-09-27 18:11:45
我正在尝试下载我在Dropbox中的pdf文件,我需要将其保存到我的本地计算机,任何文件夹都可以是C:'Users'User'Desktop
例如。这是我一直在使用的代码:
public void DownloadPdf()
{
DropboxClient client2 = new DropboxClient("cU5M-asdgfsdfsdfds3434435dfgfgvXoAMCFyOXH");
string folder = "MyFolder";
string file = "Test PDF.pdf";
var response = client2.Files.DownloadAsync("/" + folder + "/" + file);
}
如何将文件保存到本地驱动器?接下来我需要做什么?它不会抛出任何错误,但我甚至不确定路径是否会进入Dropbox中的pdf文档。我在用Dropbox。
您需要做的是将内容转换为流并下载到本地路径。你可以这样做
public void DownloadPdf(string localFilePath)
{
DropboxClient client2 = new DropboxClient("cU5M-asdgfsdfsdfds3434435dfgfgvXoAMCFyOXH");
string folder = "MyFolder";
string file = "Test PDF.pdf";
using (var response = await client.Files.DownloadAsync("/" + folder + "/" + file))
{
using (var fileStream = File.Create(localFilePath))
{
(await response.GetContentAsStreamAsync()).CopyTo(fileStream);
}
}
}