The documentation for Dropbox is far from the worst I've seen. You need to use the metadata path, as my example below.
List<String> arrList = new ArrayList<String>();
Entry entries = mDropboxApi.metadata("/metadata", 100, null, true, null);
for (Entry e : entries.contents) {
if (!e.isDeleted && !e.isDir) {
arrList.add(e.fileName);
}
}
source
share