How do you copy the blob items between two different CloudBlobContainers ?I would like to do a ListBlobs() on one container, and then write each blob to a different container. I tried changing the URI :
CloudBlob destBlob = containerProd.GetBlobReference(newURI);
destBlob.CopyFromBlob(blob, null);
But I get a error :
The copy source account and destination account must be the same."
Thanks, Peter