Skip to content

Commit d49ecd9

Browse files
authored
Merge pull request #79440 from normesta/normesta-azcopy
Fixing a bug
2 parents 1aa45de + 34d1024 commit d49ecd9

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

articles/storage/common/storage-use-azcopy-blobs.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ This section contains the following examples:
189189
You can synchronize the contents of a local file system to a blob container. You can also synchronize a blob container to a local file system on your computer. Synchronization is one-way. In other words, you choose which of these two endpoints is the source and which one is the destination.
190190

191191
> [!NOTE]
192-
> The current release of AzCopy doesn't synchronize between other sources and destinations (For example: File storage or Amazon Web Services (AWS) S3 buckets).
192+
> Currently, this scenario is supported only for accounts that don't have a hierarchical namespace. The current release of AzCopy doesn't synchronize between other sources and destinations (For example: File storage or Amazon Web Services (AWS) S3 buckets).
193193
194194
The `sync` command compares file names and last modified timestamps. Set the `--delete-destination` optional flag to a value of `true` or `prompt` to delete files in the destination directory if those files no longer exist in the source directory.
195195

@@ -206,8 +206,6 @@ In this case, the local file system becomes the source and the container is the
206206
|--------|-----------|
207207
| **Syntax** | `azcopy sync "<local-directory-path>" "https://<storage-account-name>.<blob or dfs>.core.windows.net/<container-name>" --recursive` |
208208
| **Example** | `azcopy sync "C:\myDirectory" "https://mystorageaccount.blob.core.windows.net/mycontainer" --recursive` |
209-
| **Example** (hierarchical namespace) | `azcopy sync "C:\myDirectory" "https://<storage-account-name>.dfs.core.windows.net/mycontainer" --recursive` |
210-
211209

212210
### Synchronize a local file system to a container
213211

@@ -217,7 +215,7 @@ In this case, the container becomes the source and the local file system is the
217215
|--------|-----------|
218216
| **Syntax** | `azcopy sync "https://<storage-account-name>.<blob or dfs>.core.windows.net/<container-name>" "C:\myDirectory" --recursive` |
219217
| **Example** | `azcopy sync "https://mystorageaccount.blob.core.windows.net/mycontainer" "C:\myDirectory" --recursive` |
220-
| **Example** (hierarchical namespace) | `azcopy sync "https://mystorageaccount.dfs.core.windows.net/mycontainer" "C:\myDirectory" --recursive` |
218+
|
221219

222220
## Next steps
223221

articles/storage/common/storage-use-azcopy-configure.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ To configure the proxy settings for AzCopy, set the `https_proxy` environment va
2727

2828
| Operating system | Command |
2929
|--------|-----------|
30-
| **Windows** | `set https_proxy=<proxy IP>:<proxy port>` |
30+
| **Windows** | In a command prompt use: `set https_proxy=<proxy IP>:<proxy port>`<br> In PowerShell use: `$env:https_proxy=<proxy IP>:<proxy port>`|
3131
| **Linux** | `export https_proxy=<proxy IP>:<proxy port>` |
3232
| **MacOS** | `export https_proxy=<proxy IP>:<proxy port>` |
3333

0 commit comments

Comments
 (0)