I am trying to list all files in the folder using searchBuilder, when I passing the multiple extensions passing in Query which results Zero values.
For Eg:
String query = ".pdf";
Long max = 100L;
Long stat = 0L;
SearchResult sresult;
SearchMode mode = SearchMode.FILENAME;
sresult = DropboxClient.getClient().files().searchBuilder(path, query).withMode(mode).withMaxResults(max).withStart(stat).start();
java.util.List<SearchMatch> res = sresult.getMatches();
Above code works fine for me, But i trying to multiple extensions ".pdf .jpg" it will not works.
Is any possible way to search all files with any maxmium limit?