Below code using for file move in dropbox, Getting "too_many_write_operations" while moving multiple files one by one, Also allowing multiple movement without completing without completing existing movement. Please suggest the synchronous way of file move without allowing multiple movement, It Should allow one by one file movement(FIFO).
var beginRes = UserInfo.Files.BeginMoveV2(arg, null, null);
var waithandle = beginRes.AsyncWaitHandle.WaitOne();
if (waithandle)
{
----Log----
}
var EndRes = UserInfo.Files.EndMoveV2(beginRes);
var result = EndRes;