I enabled logs and I can confirm that UploadMultiple actually calls the Synchronize method to upload the files. Also I am monitoring the files that are uploaded in the FTP server and most of the time elapsed is NOT the actual file uploads. For example, with the bigger destination folder the operation takes 3 minutes, but the files start being uploaded until the last 5 seconds. This means that most of the time is probably spent getting the listings of all the contents of the destination folder to perform the synchronization, which is completely unnecessary for my scenario.
I really need a way to upload a folder with concurrency but without the Sync mode, just like FileZilla does if you ask it to upload one complete folder, the transfers just start immediately and takes the same regardless of the contents of the destination folder (in my test ~8 seconds)
How can I do this?