Reputation: 24192
What is the behavior of the StartCopyFromBlob
method, when the destination blob already exists? Is the destination replaced?
I could not find an answer for this, even in the official documentation.
Upvotes: 1
Views: 502
Reputation: 3802
Any existing destination blob will be overwritten. However, you can change this behavior by using an AccessCondition.
For more information on Copy Blob, please refer to the REST API documentation.
Upvotes: 2