az storage blob upload-batch -d "$web" -s
When I run this command I encounter an error " argument --source/-s: expected one argument "
What would I add here? For the source how can I get the path-to-directory ?
I have tried this command "az storage blob upload-batch -d "$web" -s /home/cloud/index.html"




I agree with @Jayendran, You can use this command:
az storage blob upload-batch -d mycontainer --account-name mystorageaccount --account-key 00000000 -s <path-to-directory>make sure to use you are mentioning the file path of the file in quote like this `"/home/cloud/index.html"