Skip to content

Latest commit

 

History

History
37 lines (22 loc) · 860 Bytes

README.md

File metadata and controls

37 lines (22 loc) · 860 Bytes

logo

build & test

Lists zip file content on AWS S3 without downloading whole document. Supports both zip and zip64 files.

Usage

First install S3ZipContent via NuGet console:

PM> Install-Package S3ZipContent

Sample usage:

IAmazonS3 s3 = new AmazonS3Client();

IS3ZipContentHelper content = new S3ZipContentHelper(s3);
var contentList = await content.GetContents("Bucket", "Key");

foreach (var content in contentList)
   Console.WriteLine(item.FullName);

Dependencies

.net5.0, .NETStandard 2.1, .NETStandard 2.0, .NETFramework 4.5

  • AWSSDK.S3 (>= 3.3.0)

.NETStandard 1.6

  • AWSSDK.S3 (>= 3.3.0)

  • NETStandard.Library (>= 1.6.1)