Your workflow is unique 👨💻 - tell us how you use Dropbox here.
Forum Discussion
Take OFF LTD
1 year agoNew member | Level 2
files_list_folder Not giving me All the Files
why files_list_folder API not getting me all files from the dropbox folder sometimes
files = dbx.files_list_folder(path, recursive=True).entries
Greg-DB
Dropbox Community Moderator
1 year agoPlease note that the files_list_folder/files_list_folder_continue interface is paginated, so you're not guaranteed to get all results back in a single page. The number of pages that are used can change over time and across accounts, folders, etc.
Be sure to check the ListFolderResult.has_more returned by files_list_folder. If it's True, you need to call back to files_list_folder_continue to get more results. This can occur at any time, so you should make sure your app is written to always handle that possibility. Please see the files_list_folder documentation for more information.
About Dropbox API Support and Feedback
Get help with the Dropbox API from fellow developers and experts.
The Dropbox Community team is active from Monday to Friday. We try to respond to you as soon as we can, usually within 2 hours.
If you need more help you can view your support options (expected response time for an email or ticket is 24 hours), or contact us on X, Facebook or Instagram.
For more info on available support options for your Dropbox plan, see this article.
If you found the answer to your question in this Community thread, please 'like' the post to say thanks and to let us know it was useful!