0
我想從Dropbox帳戶獲取或查找共享文件夾的所有成員。目前我使用DropNet,但沒有找到這樣的選項。如何以編程方式使用c#獲得Dropbox共享文件夾的成員?
我想從Dropbox帳戶獲取或查找共享文件夾的所有成員。目前我使用DropNet,但沒有找到這樣的選項。如何以編程方式使用c#獲得Dropbox共享文件夾的成員?
Dropbox API目前沒有任何方式以編程方式獲取共享文件夾成員列表。
對於.Net使用Spring Social dropbox framework。他們已經提供了一些例子。在其中的一個例子中,他們提供了列出特定類型的所有文件的代碼。
附加代碼:
//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
}
});