nimrod
nimrod

Reputation: 5732

List specific Dropbox folder with Dropbox API in PHP or JS

Is it possible to list all files and directories from a specific path (recursivelly) with the Dropbox API?

E.g. I want to list all files which are stored in Projects/Customers/CustomerXY/ of my account statically on my website.

Upvotes: 0

Views: 1397

Answers (1)

SamV
SamV

Reputation: 7586

After a quick look at the Core Dropbox API it seems this is possible using the /metadata endpoint.

Take a look at https://www.dropbox.com/developers/core/docs#metadata, you can use the information provided to create a recursive function or just display the files/folders within the specified folder.

Upvotes: 1

Related Questions