我想从Dropbox帐户获取或查找共享文件夹的所有成员。目前我正在使用DropNet,但我找不到这样的选项。
答案 0 :(得分:0)
Dropbox API目前无法以编程方式获取共享文件夹成员列表。
答案 1 :(得分:0)
将Spring Social dropbox framework用于.Net。他们已经提供了一些例子。在其中一个示例中,他们提供了列出特定类型的所有文件的代码。
附加代码:
//After creating dropbox service use the following code
//Following code searches the root folder, file of type "all" including subfolders
//To search a particular folder write the path in the first parameter of SearchAsync Method
//To list only "txt" files write ".txt" for the second parameter
dropbox.SearchAsync("", ".").ContinueWith(task =>
{
Console.WriteLine(task.Result.Count);
foreach (Entry file in task.Result)
{
Console.WriteLine(file.Path); //prints path
}
});