[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 blob items whose names begin with the specified prefix and that are retrieved lazily.
Namespace: Microsoft.WindowsAzure.StorageClient
Assembly: Microsoft.WindowsAzure.StorageClient (in Microsoft.WindowsAzure.StorageClient.dll)
Usage
Visual Basic |
---|
Dim instance As CloudBlobClient
Dim prefix As String
Dim returnValue As IEnumerable(Of IListBlobItem)
returnValue = instance.ListBlobsWithPrefix(prefix) |
Syntax
Visual Basic |
---|
Public Function ListBlobsWithPrefix ( _
prefix As String _
) As IEnumerable(Of IListBlobItem) |
C# |
---|
public IEnumerable<IListBlobItem> ListBlobsWithPrefix (
string prefix
) |
C++ |
---|
public:
IEnumerable<IListBlobItem^>^ ListBlobsWithPrefix (
String^ prefix
) |
Parameters
- prefix
Type: System.String
The blob name prefix. This value must be preceded by the name of the container.
Return Value
Type: System.Collections.Generic.IEnumerable
An enumerable collection of objects that implement
IListBlobItem.
Example
The following code example lists blobs beginning with a specified prefix. Note that the prefix must include the name of the container.
C# | Copy Code |
---|
static void ListBlobsInVirtualDirectory(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));
//List blobs in container 'mycontainer' beginning with prefix 'a/', using a hierarchical listing.
//The results list only blobs directly beneath 'mycontainer/a/'
foreach (var blobItem in blobClient.ListBlobsWithPrefix("mycontainer/a/"))
{
Console.WriteLine(blobItem.Uri);
}
//Results similar to:
//http://storagesample.blob.core.windows.net/mycontainer/a/00001.txt
//http://storagesample.blob.core.windows.net/mycontainer/a/b/
Console.WriteLine();
//List blobs in container 'mycontainer' beginning with prefix 'a/', using a flat listing.
//The results list all blobs beneath 'mycontainer/a/', even if they are in a virtual subdirectory.
BlobRequestOptions options = new BlobRequestOptions();
options.UseFlatBlobListing = true;
foreach (var blobItem in blobClient.ListBlobsWithPrefix("mycontainer/a/", options))
{
Console.WriteLine(blobItem.Uri);
}
//Results similar to:
//http://storagesample.blob.core.windows.net/mycontainer/a/00001.txt
//http://storagesample.blob.core.windows.net/mycontainer/a/b/00002.txt
//http://storagesample.blob.core.windows.net/mycontainer/a/b/c/00003.txt
//http://storagesample.blob.core.windows.net/mycontainer/a/b/c/00004.txt
//http://storagesample.blob.core.windows.net/mycontainer/a/b/c/00005.txt
//http://storagesample.blob.core.windows.net/mycontainer/a/b/c/00006.txt
}
|
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