2012-11-09 43 views

回答

0

Dropbox API目前沒有任何方式以編程方式獲取共享文件夾成員列表。

0

對於.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 
    } 
}); 

相關問題