Hi there, I am trying to fetch all content within a certain directory and display its content. The way it's set up now, it can fetch all files, but not directories within this directory.
dbx
.filesListFolder({path: '/App'})
.then(response => {
for (let i = 0; i < response.entries.length; i++) {
dbx
.filesDownload({path: `/App/${response.entries[i].name}`})
.then(resp => {
let blob = resp.fileBlob;
blob.name = response.entries[i].name;
});
}
Is there a single API method that can simply fetch all content within a directory?