hkutluay / S3ZipContent

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

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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)

About

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

License:MIT License


Languages

Language:C# 100.0%