0

Dropbox アカウントから共有フォルダーのすべてのメンバーを取得または検索したいと考えています。現在、私は DropNet を使用していますが、そのようなオプションは見つかりませんでした。

4

2 に答える 2

0

.Net 用のSpring Social ドロップボックス フレームワークを使用します。彼らはすでにいくつかの例を提供しています。例の 1 つで、特定のタイプのすべてのファイルを一覧表示するコードが提供されています。

追加コード:

//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
    }
}); 

于 2012-11-14T15:27:52.150 に答える
0

現在、Dropbox API には、共有フォルダ メンバーのリストをプログラムで取得する方法はありません。

于 2012-11-11T02:40:09.307 に答える