I want to get the list of all blobs that are uploaded in Content container > Images folder.
The List Blobs operation can enumerate the list of blobs under the specified container, and you can make the results to return only blobs whose names begin with the specified prefix by specifying the prefix
parameter on the URI.
edit:
If you'd like to using Microsoft Azure Storage Client Library for .NET, you can call ListBlobs Method and specify the prefix
parameter to filter the results.
CloudStorageAccount storageAccount = CloudStorageAccount.Parse("DefaultEndpointsProtocol=https;AccountName={account_name};AccountKey={account_key};EndpointSuffix=core.windows.net");
CloudBlobClient blobClient = storageAccount.CreateCloudBlobClient();
CloudBlobContainer container = blobClient.GetContainerReference("Content");
List<IListBlobItem> blobslist = container.ListBlobs("Images", true).ToList();