I'm using the Core API on Android to sync folders in Dropbox to a local folder.
I managed to list the files, download them, save revision on a database all working pretty well.
But I forgot I need to delete the local files that were deleted in Dropbox, so I figured I could check the isDeleted property on an Entry. But the way I do is get the list of files in contents for the folder Entry but that does not return older files that were deleted.
How can I get the deleted files from Dropbox, to check if they still exist locally? I would not like to have to cross check if the files in my folder exist on Dropbox, only from Dropbox to my folder.