Is there a way to remove the case sensitivity from blob storage

Respondida Is there a way to remove the case sensitivity from blob storage

  • lunes, 30 de enero de 2012 19:33
     
     

    I am just giving windows azure a try with a trial account and I see that blob storage is case sensitive. For exmaple, I uploaded a file called Koala.jpg. When I make a request to it <storage-account>.blob.core.windows.net/<container>/Koala.jpg I retrieve the image w/o problem.

    But when I try to get the image with this url, I am unable to:

    <storage-account>.blob.core.windows.net/<container>/koala.jpg

    So, any chance I can make it case insensitive?

Todas las respuestas

  • lunes, 30 de enero de 2012 20:07
    Moderador
     
     Respondida
    To my knowledge, there's no way to change this. Additionally, some areas do not allow uppercase names (storage account name as I recall). So I'd strongly encourage forcing a downcase on all items.
    • Marcado como respuesta tgbrkug lunes, 30 de enero de 2012 20:56
    •  
  • lunes, 30 de enero de 2012 20:55
     
     
    Yes, you are right. I will force this. thanks!