I am in a situation where i have 1000's of blobs in azure storage which are pictures with url having space in it which is a problem. so as a measure we want to update blob uri and remove spaces in each of them which has one. I know how to get blobs or would figure out but not able to understand how can i update the uri once i get a blob here is my current code to get blobs.
CloudBlobContainer container = GetContainerReference('containername');
var blobs=container.ListBlobs().Select(p=>p.Uri.ToString().Contains(' '));
foreach (CloudBlob item in blobs)
{
}