/ Published in: Java
Iterating through a Dropbox Folder
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
Entry entries = mApi.metadata(Path, 100, null, true, null); for (Entry e : entries.contents) { if (!e.isDeleted) { Log.i("Item Name",e.fileName); } }
URL: http://stackoverflow.com/a/10546792/521717