You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When you use the following examples, you'll need to replace the placeholder values in brackets with your own values. For more information about signing into Azure with PowerShell, see [Sign in with Azure PowerShell](/powershell/azure/authenticate-azureps).
@@ -65,7 +65,7 @@ The following example specifies a `-File` parameter value to upload a single, na
65
65
```azurepowershell
66
66
#Set variables
67
67
$path = "C:\temp\"
68
-
$containerName = "myContainer"
68
+
$containerName = "mycontainer"
69
69
$filename = "demo-file.txt"
70
70
$imageFiles = $path + "*.png"
71
71
$file = $path + $filename
@@ -103,7 +103,7 @@ The following example shows several approaches used to provide a list of blobs.
103
103
```azurepowershell
104
104
#Set variables
105
105
$namedContainer = "named-container"
106
-
$demoContainer = "myContainer"
106
+
$demoContainer = "mycontainer"
107
107
$containerPrefix = "demo"
108
108
109
109
$maxCount = 1000
@@ -190,7 +190,7 @@ The following sample code provides an example of both single and multiple downlo
190
190
191
191
```azurepowershell
192
192
#Set variables
193
-
$containerName = "myContainer"
193
+
$containerName = "mycontainer"
194
194
$path = "C:\temp\downloads\"
195
195
$blobName = "demo-file.txt"
196
196
$fileList = "*.png"
@@ -253,7 +253,7 @@ To read blob properties or metadata, you must first retrieve the blob from the s
253
253
The following example retrieves a blob and lists its properties.
0 commit comments