When using the StorageClient and calling UploadByteArray() with a blob name that already exists, will this cause any data corruption ? (In other words, do I have to call Delete() before uploading, which will cost another transaction ?)
When using the StorageClient and calling UploadByteArray() with a blob name that already exists,
Share
You should just be able to call
UploadByteArray()without having to do the delete first and it will overwrite the blob that is already there.