Skip to content

Commit f6479a0

Browse files
committed
Just a temporary checkin
1 parent fe1ac2b commit f6479a0

File tree

1 file changed

+19
-4
lines changed

1 file changed

+19
-4
lines changed

articles/storage/blobs/data-lake-storage-directory-file-acl-cli.md

Lines changed: 19 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,10 @@ This article shows you how to use the [Azure Command-Line Interface (CLI)](https
3737
```
3838
If your version of Azure CLI is lower than `2.0.67`, then install a later version. See [Install the Azure CLI](https://docs.microsoft.com/cli/azure/install-azure-cli?view=azure-cli-latest).
3939

40-
3. Install the `storage-preview` extension.
40+
3. Install the `storage` extension.
4141

4242
```azurecli
43-
az extension add -n storage-preview
43+
az extension add -n storage
4444
```
4545

4646
## Connect to the account
@@ -65,16 +65,31 @@ This article shows you how to use the [Azure Command-Line Interface (CLI)](https
6565

6666
Replace the `<subscription-id>` placeholder value with the ID of your subscription.
6767

68+
> ![!NOTE]
69+
> The example presented in this article reflect account key authorization. If you want to use Azure Active Directory (AD) authorization, either set the **AZURE_STORAGE_AUTH_MODE** environment variable to `login` or append `--auth-mode login` to each of these command examples. To learn more about authorization methods, see [Authorize access to blob or queue data with Azure CLI](../common/authorize-data-operations-cli).
70+
6871
## Create a file system
6972

70-
A file system acts as a container for your files. You can create one by using the `az storage container create` command.
73+
A file system acts as a container for your files. You can create one by using the `az storage fs create` command.
7174

7275
This example creates a file system named `my-file-system`.
7376

7477
```azurecli
75-
az storage container create --name my-file-system --account-name mystorageaccount
78+
az storage fs create -n my-file-system --account-name mystorageaccount
7679
```
7780

81+
## Show file system properties
82+
83+
// put here.
84+
85+
## Show file system properties
86+
87+
// put here.
88+
89+
## List file system contents
90+
91+
// put here.
92+
7893
## Create a directory
7994

8095
Create a directory reference by using the `az storage blob directory create` command.

0 commit comments

Comments
 (0)