views:

37

answers:

2

Is is possible to rename an Azure Storage Blog using the Azure storage api from a Web Role? The only solution I have at the moment is to copy the blob to a new blob with the correct name and delete the old one.

+2  A: 

At the moment it is impossible to rename blob in one operation.

Azure Blob Service API does not support ability to rename or move blobs.

Rinat Abdullin
A: 

You can, however, copy and then delete.

smarx