You might see that the Dropbox Community team have been busy working on some major updates to the Community itself! So, here is some info on what’s changed, what’s staying the same and what you can expect from the Dropbox Community overall.
Forum Discussion
efu
6 years agoNew member | Level 2
C# CopyBatchV2Async Method not working as expected
The CopyBatchV2Async documentation states that it can "Copy multiple files or folders to different locations at once in the user's Dropbox." So that means that if I specify FromPath as a folder, and ToPath as a folder in a RelocationPath, it will copy the contents of the FromPath folder to that of the ToPath folder right? What is happening is that CopyBatchCheckV2Async.IsComplete is returning that the batch is complete, however no files are moved. I am testing with a folder that contains a singular file. Can someone clarify if the documentation is correct, that it can copy folders, or perhaps if something else is the problem?
You can use CopyBatchV2Async to copy files and/or folders. Note that this copies the item itself, e.g., the entire folder including the folder itself, not only the folder's contents. The 'ToPath' should be the desired path of the copied item itself, not an existing folder.
E.g., if you want to make a copy of an existing folder at "/MyFolder", you could specify a 'ToPath' value of "/MyFolderCopy", for instance. That would make a copy of "MyFolder", as well as anything inside it, at that "/MyFolderCopy" path. Make sure there isn't already something at the new path, e.g., "/MyFolderCopy", though.
Also, be sure to drill down into the RelocationBatchV2JobStatus.Complete object though, as it doesn't necessarilly mean everything succeeded; only that the job completed. Check each RelocationBatchResultEntry to see the specific results.
- Greg-DBDropbox Staff
You can use CopyBatchV2Async to copy files and/or folders. Note that this copies the item itself, e.g., the entire folder including the folder itself, not only the folder's contents. The 'ToPath' should be the desired path of the copied item itself, not an existing folder.
E.g., if you want to make a copy of an existing folder at "/MyFolder", you could specify a 'ToPath' value of "/MyFolderCopy", for instance. That would make a copy of "MyFolder", as well as anything inside it, at that "/MyFolderCopy" path. Make sure there isn't already something at the new path, e.g., "/MyFolderCopy", though.
Also, be sure to drill down into the RelocationBatchV2JobStatus.Complete object though, as it doesn't necessarilly mean everything succeeded; only that the job completed. Check each RelocationBatchResultEntry to see the specific results.
- efuNew member | Level 2
Okay, thank you. The issue was that I was trying to copy some new files into an existing folder that already contained some other files.
About Dropbox API Support & Feedback
Find help with the Dropbox API from other developers.5,920 PostsLatest Activity: 13 hours ago
If you need more help you can view your support options (expected response time for an email or ticket is 24 hours), or contact us on X or Facebook.
For more info on available support options for your Dropbox plan, see this article.
If you found the answer to your question in this Community thread, please 'like' the post to say thanks and to let us know it was useful!