Developing a client to use DropBox using C++ on a low resource device (no harddrive).
Would like to list the contents of a directory such that directories are list at the top and any files below. I have searched through the API list and have found out how to use:
- /files/search
- /files/list_folder
but neither of these let me order or filter the results bases on the basis of file vs folder. Since this is a low resource box it is not possible to cache data between sessions.
My Use Case is a user that has a few thousand files and 10 directories in the root directory. It would be a poor user experience to download information on each file every time the user I want to list the root directory.
Is there a API or path I missed?
Thank You