Miguel Angelo
Miguel Angelo

Reputation: 24192

Does StartCopyFromBlob replace destination?

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

Answers (1)

Serdar Ozler
Serdar Ozler

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

Related Questions