We Want to Hear From You! What Do You Want to See on the Community? Tell us here!
Forum Discussion
tiamat
5 years agoHelpful | Level 6
cannot copy files with filesCopyBatchV2
I am trying to copy some files from my `Camera Uploads` folder to another folder `Videos`
first I do
const { async_job_id } = await dropbox.filesCopyBatchV2({ entries, autorename: false, });
This seems to work because I get back a long string for async_job_id
Then I do the following:
while (true) { try { let response = await dropbox.filesCopyBatchCheckV2({ async_job_id }); if (response['.tag'] != 'in_progress') { break; } await sleep(5000); } catch (error) { break; }
What happens is that I hit filesCopyBatchCheckV2 endpoint 5 or 6 times; I get back a response of in_progress each time; then I get a response with a status of 409, statusText of "Conflict" and an error_summary of internal_error.
No files get transferred.
Please help!
tiamat wrote:...
const { async_job_id } = await dropbox.filesCopyBatchV2({ entries, autorename: false, });
... I get a response with a status of 409, statusText of "Conflict" and an error_summary of internal_error.
...
Hi tiamat,
Seems, someone (one or more) file with same name reside at destination already. 😉 If you are forbidding autorename, it's coming up as an error.
Hope this helps.
2 Replies
- Здравко5 years agoLegendary | Level 20
tiamat wrote:...
const { async_job_id } = await dropbox.filesCopyBatchV2({ entries, autorename: false, });
... I get a response with a status of 409, statusText of "Conflict" and an error_summary of internal_error.
...
Hi tiamat,
Seems, someone (one or more) file with same name reside at destination already. 😉 If you are forbidding autorename, it's coming up as an error.
Hope this helps.
- Greg-DB5 years ago
Dropbox Community Moderator
tiamat I see you already got some help here, but it's worth noting that there can be other causes of failures like this, so if you still need help tracking down what's wrong, feel free to contact us directly with the job ID.
About Dropbox API Support & Feedback
Find help with the Dropbox API from other developers.6,036 PostsLatest Activity: 8 hours ago
The Dropbox Community team is active from Monday to Friday. We try to respond to you as soon as we can, usually within 2 hours.
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!