新しいBoxサポートサイトへようこそ。 変更点の詳細はこちらをご確認ください .

searching for a folder

新規投稿

コメント

1件のコメント

  • Murtza

     You can run an exact match search by putting your query in quotes. Please keep in mind that you have to escape the quotes with backslashes. 

     

    Here is an example using our Java SDK.

    BoxFolder rootFolder = BoxFolder.getRootFolder(api);
    Iterable<BoxItem.Info> results = rootFolder.search("\" text to find \"");
    for (BoxItem.Info result : results) {
        // Do something with the search result.
    }

     

    0
    コメントアクション パーマリンク

サインインしてコメントを残してください。