Hello everybody,
from 12.30 on 10/15/2019 the Dropbox Api java does not force the renaming of the existing files.
Load the file xyz.pdf and dropbox, correctly, assigns me the id <id: xxx> but when I re-upload the same file xyz.pdf the rename does not work:
I expected the file to be renamed to xyz (1).pdf and the id returned <id: zzz>
I use dbxClient V2
below part of the code with which I impose the rename
UploadBuilder fileUploader = dropboxClient.files (). UploadBuilder (pathFileName);
fileUploader.withMode (WriteMode.ADD) .withMute (Boolean.TRUE) .withAutorename (Boolean.TRUE);
is there any news about it
thanks