I have installed the latest windows azure nuget packages in my .net core 2.0 project. Installed version : 8.6.0.0
In the 8.1.4 version, i have get the list of items using listblobs method using the below syntax.
CloudBlobDirectory sampleDirectory = container.GetDirectoryReference(path);
IEnumerable<IListBlobItem> items = sampleDirectory.ListBlobs(false, BlobListingDetails.Metadata);
when is try to use the same code block in .net core 2.0 project with 8.6.0.0 windows azure version, it throws error as
"cloudblobdirectory does not contain a definition for listblobs".
How to get the file items in this version?
Similarly , UploadText() method in "CloudBlockBlob" also not available in this version.
any one please suggest the solution for this issue ?

awaitingthe async operation? Try the following line of code:Task<BlobResultSegment> item = await sampleDirectory.ListBlobsSegmentedAsync(true, BlobListingDetails.Metadata, null, null, options, context);. HTH.