从共享保管箱链接 (WPF) 获取文件

问题描述 投票:0回答:1

我想从共享 Dropbox 链接检索数据并在我的 WPF 项目中的列表视图中显示它们。

enter image description here

我浏览了有关此问题的主题,但找不到解决方案。

我添加了DropboxApi nugget包,这里有很多方法。 我认为其中之一显示了链接中的文件。但我找不到哪个是。

有代码:

using Dropbox.Api;
using Dropbox.Api.Files;
public void GetFiles()
{
    using (var dbx = new DropboxClient("accesstoken"))
    {
        var sharedLink = new SharedLink("https://www.dropbox.com/scl/fo/5hsaghkkzjubop56fhxhx/AN62TSoIVrO4U5yuTL2LRso?rlkey=1wj1yc2a8xaas8zug7cm95do3&e=1&dl=0");
        var result = dbx.Files. // There should be a method here something like dbx.Files.GetFilesFromSharedLink(sharedLink)
    }
}
c# wpf dropbox
1个回答
0
投票

这应该有效!

dbx.Files.DownloadAsync(target_path)).Wait();

请参阅此处的文档: https://www.dropbox.com/developers/documentation/dotnet#tutorial

© www.soinside.com 2019 - 2024. All rights reserved.