DropboxAPI - folder content


/ Published in: Java
Save to your folder(s)

Iterating through a Dropbox Folder


Copy this code and paste it in your HTML
  1. Entry entries = mApi.metadata(Path, 100, null, true, null);
  2.  
  3. for (Entry e : entries.contents) {
  4. if (!e.isDeleted) {
  5. Log.i("Is Folder",String.valueOf(e.isDir));
  6. Log.i("Item Name",e.fileName);
  7. }
  8. }

URL: http://stackoverflow.com/a/10546792/521717

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.