[This topic is part of the Microsoft Azure Storage Client Library 1.7, which has been deprecated. See
Storage Client Library for the latest version.]
Returns an enumerable collection of items in this blob directory in a hierarchical listing.
Namespace: Microsoft.WindowsAzure.StorageClient
Assembly: Microsoft.WindowsAzure.StorageClient (in Microsoft.WindowsAzure.StorageClient.dll)
Usage
Visual Basic |
---|
Dim instance As CloudBlobDirectory
Dim returnValue As IEnumerable(Of IListBlobItem)
returnValue = instance.ListBlobs |
Syntax
Visual Basic |
---|
Public Function ListBlobs As IEnumerable(Of IListBlobItem) |
C# |
---|
public IEnumerable<IListBlobItem> ListBlobs () |
C++ |
---|
public:
IEnumerable<IListBlobItem^>^ ListBlobs () |
Return Value
An enumerable collection of objects that implement
IListBlobItem.
Example
This code example lists blobs in a blob directory, first hierarchically and then as a flat listing.
| Copy Code |
---|
static void ListBlobsInDirectory(Uri blobEndpoint, string accountName, string accountKey)
{
//Create service client for credentialed access to the Blob service.
CloudBlobClient blobClient = new CloudBlobClient(blobEndpoint, new StorageCredentialsAccountAndKey(accountName, accountKey));
//Get a reference to a blob directory in a container named 'mycontainer'.
CloudBlobDirectory blobDir = blobClient.GetBlobDirectoryReference("mycontainer/a/b/");
//List blobs and directories in this blob directory hierarchically.
foreach (var blobItem in blobDir.ListBlobs())
{
Console.WriteLine(blobItem.Uri);
}
Console.WriteLine();
//List blobs in this blob directory using a flat listing.
BlobRequestOptions options = new BlobRequestOptions();
options.UseFlatBlobListing = true;
foreach (var blobItem in blobDir.ListBlobs(options))
{
Console.WriteLine(blobItem.Uri);
}
}
|
Remarks
Thread Safety
Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
Platforms
Change History
See Also