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
Copy file name to clipboardExpand all lines: articles/storage/common/storage-use-azcopy-blobs.md
+16-5Lines changed: 16 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@ description: This article contains a collection of AzCopy example commands that
4
4
author: normesta
5
5
ms.service: storage
6
6
ms.topic: conceptual
7
-
ms.date: 10/16/2019
7
+
ms.date: 10/22/2019
8
8
ms.author: normesta
9
9
ms.subservice: common
10
10
ms.reviewer: dineshm
@@ -27,6 +27,9 @@ See the [Get started with AzCopy](storage-use-azcopy-v10.md) article to download
27
27
28
28
## Create a container
29
29
30
+
> [!TIP]
31
+
> The examples in this section enclose path arguments with single quotes (''). Use single quotes in all command shells except for the Windows Command Shell (cmd.exe). If you're using a Windows Command Shell (cmd.exe), enclose path arguments with double quotes ("") instead of single quotes ('').
32
+
30
33
You can use the [azcopy make](storage-ref-azcopy-make.md) command to create a container. The examples in this section create a container named `mycontainer`.
31
34
32
35
|||
@@ -49,11 +52,11 @@ This section contains the following examples:
49
52
> * Upload the contents of a directory
50
53
> * Upload specific files
51
54
52
-
> [!NOTE]
53
-
> AzCopy doesn't automatically calculate and store the file's md5 hash code. If you want AzCopy to do that, then append the `--put-md5` flag to each copy command. That way, when the blob is downloaded, AzCopy calculates an MD5 hash for downloaded data and verifies that the MD5 hash stored in the blob's `Content-md5` property matches the calculated hash.
54
-
55
55
For detailed reference docs, see [azcopy copy](storage-ref-azcopy-copy.md).
56
56
57
+
> [!TIP]
58
+
> The examples in this section enclose path arguments with single quotes (''). Use single quotes in all command shells except for the Windows Command Shell (cmd.exe). If you're using a Windows Command Shell (cmd.exe), enclose path arguments with double quotes ("") instead of single quotes ('').
59
+
57
60
### Upload a file
58
61
59
62
|||
@@ -117,7 +120,6 @@ In this example, AzCopy transfers the `C:\myDirectory\photos` directory and the
117
120
118
121
You can also exclude files by using the `--exclude-path` option. To learn more, see [azcopy copy](storage-ref-azcopy-copy.md) reference docs.
119
122
120
-
121
123
#### Use wildcard characters
122
124
123
125
Use the [azcopy copy](storage-ref-azcopy-copy.md) command with the `--include-pattern` option. Specify partial names that include the wildcard characters. Separate names by using a semicolin (`;`).
@@ -149,6 +151,9 @@ This section contains the following examples:
149
151
150
152
For detailed reference docs, see [azcopy copy](storage-ref-azcopy-copy.md).
151
153
154
+
> [!TIP]
155
+
> The examples in this section enclose path arguments with single quotes (''). Use single quotes in all command shells except for the Windows Command Shell (cmd.exe). If you're using a Windows Command Shell (cmd.exe), enclose path arguments with double quotes ("") instead of single quotes ('').
156
+
152
157
### Download a file
153
158
154
159
|||
@@ -237,6 +242,9 @@ This section contains the following examples:
237
242
238
243
For detailed reference docs, see [azcopy copy](storage-ref-azcopy-copy.md).
239
244
245
+
> [!TIP]
246
+
> The examples in this section enclose path arguments with single quotes (''). Use single quotes in all command shells except for the Windows Command Shell (cmd.exe). If you're using a Windows Command Shell (cmd.exe), enclose path arguments with double quotes ("") instead of single quotes ('').
247
+
240
248
### Copy a blob to another storage account
241
249
242
250
|||
@@ -281,6 +289,9 @@ If you set the `--delete-destination` flag to `true` AzCopy deletes files withou
281
289
282
290
For detailed reference docs, see [azcopy sync](storage-ref-azcopy-sync.md).
283
291
292
+
> [!TIP]
293
+
> The examples in this section enclose path arguments with single quotes (''). Use single quotes in all command shells except for the Windows Command Shell (cmd.exe). If you're using a Windows Command Shell (cmd.exe), enclose path arguments with double quotes ("") instead of single quotes ('').
294
+
284
295
### Update a container with changes to a local file system
285
296
286
297
In this case, the container is the destination, and the local file system is the source.
Copy file name to clipboardExpand all lines: articles/storage/common/storage-use-azcopy-files.md
+15Lines changed: 15 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -18,6 +18,9 @@ Before you begin, see the [Get started with AzCopy](storage-use-azcopy-v10.md) a
18
18
19
19
You can use the [azcopy make](storage-ref-azcopy-make.md) command to create a file share. The example in this section creates a file share named `myfileshare`.
20
20
21
+
> [!TIP]
22
+
> The examples in this section enclose path arguments with single quotes (''). Use single quotes in all command shells except for the Windows Command Shell (cmd.exe). If you're using a Windows Command Shell (cmd.exe), enclose path arguments with double quotes ("") instead of single quotes ('').
23
+
21
24
|||
22
25
|--------|-----------|
23
26
|**Syntax**|`azcopy make 'https://<storage-account-name>.file.core.windows.net/<file-share-name>?<SAS-token>'`|
@@ -42,6 +45,9 @@ This section contains the following examples:
42
45
43
46
For detailed reference docs see [azcopy copy](storage-ref-azcopy-copy.md).
44
47
48
+
> [!TIP]
49
+
> The examples in this section enclose path arguments with single quotes (''). Use single quotes in all command shells except for the Windows Command Shell (cmd.exe). If you're using a Windows Command Shell (cmd.exe), enclose path arguments with double quotes ("") instead of single quotes ('').
50
+
45
51
### Upload a file
46
52
47
53
|||
@@ -127,6 +133,9 @@ This section contains the following examples:
127
133
128
134
For detailed reference docs see [azcopy copy](storage-ref-azcopy-copy.md).
129
135
136
+
> [!TIP]
137
+
> The examples in this section enclose path arguments with single quotes (''). Use single quotes in all command shells except for the Windows Command Shell (cmd.exe). If you're using a Windows Command Shell (cmd.exe), enclose path arguments with double quotes ("") instead of single quotes ('').
138
+
130
139
### Download a file
131
140
132
141
|||
@@ -201,6 +210,9 @@ This section contains the following examples:
201
210
202
211
For detailed reference docs, see [azcopy copy](storage-ref-azcopy-copy.md).
203
212
213
+
> [!TIP]
214
+
> The examples in this section enclose path arguments with single quotes (''). Use single quotes in all command shells except for the Windows Command Shell (cmd.exe). If you're using a Windows Command Shell (cmd.exe), enclose path arguments with double quotes ("") instead of single quotes ('').
215
+
204
216
### Copy a file to another storage account
205
217
206
218
|||
@@ -242,6 +254,9 @@ If you set the `--delete-destination` flag to `true` AzCopy deletes files withou
242
254
243
255
For detailed reference docs, see [azcopy sync](storage-ref-azcopy-sync.md).
244
256
257
+
> [!TIP]
258
+
> The examples in this section enclose path arguments with single quotes (''). Use single quotes in all command shells except for the Windows Command Shell (cmd.exe). If you're using a Windows Command Shell (cmd.exe), enclose path arguments with double quotes ("") instead of single quotes ('').
259
+
245
260
### Update a file share with changes to another file share
246
261
247
262
The first file share that appears in this command is the source. The second one is the destination.
Copy file name to clipboardExpand all lines: articles/storage/common/storage-use-azcopy-s3.md
+3Lines changed: 3 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -48,6 +48,9 @@ AzCopy uses the [Put Block From URL](https://docs.microsoft.com/rest/api/storage
48
48
> [!IMPORTANT]
49
49
> This feature is currently in preview. If you decide to remove data from your S3 buckets after a copy operation, make sure to verify that the data was properly copied to your storage account before you remove the data.
50
50
51
+
> [!TIP]
52
+
> The examples in this section enclose path arguments with single quotes (''). Use single quotes in all command shells except for the Windows Command Shell (cmd.exe). If you're using a Windows Command Shell (cmd.exe), enclose path arguments with double quotes ("") instead of single quotes ('').
0 commit comments