I desire an efficient solution to iterate through large files located on blob storage in C#. I want to use the blob storage as a local storage. In my research I've only found solutions where the file has to be downloaded or streamed.
Is it possible to directly iterate through a file on blob storage without downloading it locally or to a stream?
Simple answer: No. You can list the blobs, i.e. their properties. But if you want to actually work with the content, you need to download it from the storage account. The storage is a pure object store.