How to upload file in Azure Blob Storage using c# having file name with accent (à, è, ù) in it.
I am trying to upload a fle with file name having some accent for example "Rapport Draft à relire".
The UploadAsync method of BloadClient class start giving error as the http request cannot have non ASCII characters . Here we can see the name of the file has non-ASCII character, in case we make it HttpUtility.HtmlEncode(fileName) , it will work fine but the blob name saved in the storage will also become the same, here for example it will become "Rapport Draft à relire" . Now if someone tries to use the method GetBlobClient with the blob name "Rapport Draft à relire" then it will not able to fetch it due to these special characters. Can you suggest what needs to be done in these scenario?