Hoping for a bit of help on how to upload a file into an existing container in Azure Storage. I have followed Azure doc - but it seem to pointing to creating a new container and upload a file there. If I already create a container beforehand in Azure, for example, as "testresult1", and then try to upload a file there using C# code then it complains that the container "testresult1" already exists.
Here is the code I've used that is wrong:
CloudBlobContainer = cloudBlobClient.GetContainerReference("testresult1");
The sample code in Microsoft doc works without having any issue, but it creates a new container, "quickstartblobs" plus the GUID, then uploads the file there. I am trying to see if there is any option where if a container already exists then how we can upload one or more files into that container using the code, without creating a new container for each uploaded file.
A relevant question: is there any upper limit on how many containers can be created in Azure Storage? Is it related to Azure subscription?
Thank you.