The organization I work for uses Dropbox APIs to sync manuals and firmware files located in a server, to the Dropbox account of its users.
It would be ideal if we could sync the whole folder with all users.
But it is not possible :slight_frown: as we do not want users to see each other names (for privacy reasons and because users are competitors).
So, instead, we are syncing files manually. We periodically compare each user's files with the ones in the server and then sync them. It works fine, but it is quite resource-demanding as we need to make a lot of calls to retrieve the users files, our files, check for corrispondencies, etc.
The question is: is there a smarter way to do this?
If not, is there a way we can compare entire folders (and contained subfolders) without having to compare each file manually?
Thanks!