Skip to content

Instantly share code, notes, and snippets.

@albertherd
albertherd / GetFileEntriesFromAzureZip
Created October 23, 2021 05:21
Get File Entries and names from ZIP stored on Azure
using Azure.Storage;
using Azure.Storage.Blobs;
using System;
using System.IO.Compression;
using System.Linq;
using System.Threading.Tasks;
namespace GetZipFileNamesFromAzureZip
{
class Program