I've reviewed this: Getting list of names of Azure blob files in a container?
But I have not found any code examples of how to list the files in a particular virtual folder within a container using c#. This is as far as I got. I do not see any way to specify a file path in the ListBlobs ()method.
var blobStorageAccount = GetStorageAccount();
var blobClient = blobStorageAccount.CreateCloudBlobClient();
var blobContainer = blobClient.GetContainerReference(containerName);
List<string> blobNames = blobContainer.ListBlobs().OfType<CloudBlockBlob>().Select(b => b.Name).ToList();