java - Access Dropbox file list inside public folder with public url -
i want implement dropbox in java project.
user: if suppose want take printout, instead of carrying pendrive or sending gmail id, drop file on of folder inside public folder of dropbox. after reaching printout shop navigate link http://{host}/myfiles. here show list of file there in perticular folder inside public dropbox folder, after clicking of perticular list item wll download file, user can select file , give print.
is there way file list along public url in dropbox using java ?
you can use createshareableurl method link viewing document. file list, can try
dbxentry.withchildren listing = client.getmetadatawithchildren(root);
the listing list of dbxentry object of folder. can either file or folder. folder need same thing repeatedly until reach end.
Comments
Post a Comment