Skip to content

Commit be4ae0b

Browse files
Fix
1 parent 6fb03cf commit be4ae0b

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

articles/storage/blobs/storage-blob-containers-list.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,9 @@ ms.custom: devx-track-csharp, devguide-csharp
1818

1919
When you list the containers in an Azure Storage account from your code, you can specify a number of options to manage how results are returned from Azure Storage. This article shows how to list containers using the [Azure Storage client library for .NET](/dotnet/api/overview/azure/storage).
2020

21+
> [!NOTE]
22+
> The examples in this article assume that you've created a [BlobServiceClient](/dotnet/api/azure.storage.blobs.blobserviceclient) object by using the guidance in the [Get started with Azure Blob Storage and .NET](storage-blob-dotnet-get-started.md) article.
23+
2124
## Understand container listing options
2225

2326
To list containers in your storage account, call one of the following methods:

articles/storage/blobs/storage-blob-upload.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ ms.custom: devx-track-csharp, devguide-csharp
1818
You can upload a blob, open a blob stream and write to that, or upload large blobs in blocks.
1919

2020
> [!NOTE]
21-
> Blobs in Azure Storage are organized into containers. Before you can upload a blob, you must first create a container. You can create a container in a storage account using a [BlobServiceClient](/dotnet/api/azure.storage.blobs.blobserviceclient) object or a [BlobContainerClient](/dotnet/api/azure.storage.blobs.blobcontainerclient) object. To learn how to create a container in your storage account, see [Create a container in Azure Storage with .NET](storage-blob-container-create.md).
21+
> Blobs in Azure Storage are organized into containers. Before you can upload a blob, you must first create a container. You can create a container in a storage account using methods from [BlobServiceClient](/dotnet/api/azure.storage.blobs.blobserviceclient) or [BlobContainerClient](/dotnet/api/azure.storage.blobs.blobcontainerclient). To learn how to create a container in your storage account, see [Create a container in Azure Storage with .NET](storage-blob-container-create.md).
2222
2323
To upload a blob by using a file path, a stream, a binary object or a text string, use either of the following methods:
2424

articles/storage/blobs/storage-blobs-list.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,6 @@ ms.custom: devx-track-csharp, devguide-csharp
1919

2020
When you list blobs from your code, you can specify a number of options to manage how results are returned from Azure Storage. You can specify the number of results to return in each set of results, and then retrieve the subsequent sets. You can specify a prefix to return blobs whose names begin with that character or string. And you can list blobs in a flat listing structure, or hierarchically. A hierarchical listing returns blobs as though they were organized into folders.
2121

22-
> [!NOTE]
23-
> The examples in this article assume that you've created a [BlobServiceClient](/dotnet/api/azure.storage.blobs.blobserviceclient) object by using the guidance in the [Get started with Azure Blob Storage and .NET](storage-blob-dotnet-get-started.md) article.
24-
2522
## Understand blob listing options
2623

2724
To list the blobs in a storage account, call one of these methods:

0 commit comments

Comments
 (0)