Download to Blob repository when overwriting an existing Blob

Using StorageClient and calling UploadByteArray () with an existing blob name will cause data corruption? (In other words, do I need to call Delete () before loading, which will cost another transaction?)

+4
source share
1 answer

You just need to call UploadByteArray() without first performing the uninstall, and it will overwrite the existing blob.

+4
source

Source: https://habr.com/ru/post/1383457/


All Articles