iI need to ensure that DropBox cache (local files) is up to date with remote files stored on the Dropbox server. (My app needs to wait for local files being completely up to date, before reading them)
I have searched the core api for clues on how to do that, checked the /delta api, but this does not seems related to want I need to achieve. I can only use HTTP to access dropbox apis.
So, how to detect that dropbox is still synchronizing data (downstream), or has finished its download?
Any idea is welcome, preferably using the dropbox core api
(Please note that using a CRC of all files is not possible because thousands of files are stored and computing a CRC on this complexe files structure is not acceptable for my app performances)
Thanks,