Hi,
I must be missing something, I am writing an app in Xamarin C#, the basic requirement is that the app will have access to two folders on Dropbox under the App folder, the first folder is for the specific device, the second folder is a shared folder so that the same app on different devices can share the data.
The first folder works perfectly, backups/restores work without issue, it is the shared folder that I am having trouble with, I worked out that dropbox is working out that the file has changed and uploading the changes, this is no good for me, I need to be able to delete the contents of the shared folder and upload free copies of the data.
Pseudo code.
does the file exist on dropbox
yes then delete the dropbox copy
upload a new version of the file completely
This seems to work sometimes, if I log out of both devices it seems to be quite happy to do the upload, but if both devices are connected then it seems to get confused and not work some of the time, I am guessing that the sync api is getting in the way.
All I want to do is copy the file, no fancy syncing e.g. the api keeping an eye on the files and for all the devices to be able to see the same version of the file if that makes sense.
atb
alex