I am experiencing Rate limit errors when using CopyV2Async
I am uploading a folder with sub folders but there are only 24 files in 11 folders
Is there a way to avoid these exceptions as I am forced to use a retry loop after catching the exception.
It nearly always succeeds after the first exception.
The code is one line:
var result = await objDbx.Files.CopyV2Async(szFolderToCopyFrom, szThisBackupSubFolder, true, true, true);
szFolderToCopyFrom is the folder on the windows machine and szThisBackupSubFolder is a new target folder on Dropbox
(Which immediately replicates back to the windows machine - I know it's odd, but the code works on dot maui so is across devices and so needs to work on IOS also which does not replicate)