Hello there,
I'm using Dropbox official Javascript SDK in my application. The thing is, I can have a case when two or more users try to edit the same file at the same time.
For editing I use filesUpload method with { mode: 'overwrite' }.
The first question is: will I receive the conflicted copy if the editing happens at the same time or one user will overwrite an another one's changes? If there won't be the conflicted copy, how can I implement file updating in the correct way?
The second question is: if I as a user try to update a file and the conflicted copy is created because of my update, will I have the name of conflicted copy in the Dropbox response for uploading?
Thanks a lot!