Skip to content

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

License

Notifications You must be signed in to change notification settings

soyhanbeyazit/S3ZipContent

 
 

Repository files navigation

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.GetContent("Bucket", "Key");

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

Dependencies

.NETFramework 4.5

AWSSDK.S3 (>= 3.3.0)

.NETStandard 1.6

AWSSDK.S3 (>= 3.3.0)

NETStandard.Library (>= 1.6.1)

.NETStandard 2.0

AWSSDK.S3 (>= 3.3.0)

.NETStandard 2.1

AWSSDK.S3 (>= 3.3.0)

About

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

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C# 100.0%