Skip to content
Snippets Groups Projects

Topic/81 s3 zip upload

Merged Benedikt Heinrichs requested to merge Topic/81-s3ZipUpload into Poduct/75-s3ZipMetadata
13 files
+ 613
6
Compare changes
  • Side-by-side
  • Inline
Files
13
+ 3
3
@@ -4,8 +4,8 @@ The allows to zip a folder and/or upload a whole stream in chunks to a S3 object
For example:
```
var s3 = new S3Zip(s3MultipartStreamConfiguration);
s3.ZipAndUploadFolder(@"c:\temp\test", "Test.zip");
var zipUtilities = new ZipUtilities(_s3MultipartStreamConfiguration);
zipUtilities.ZipAndUploadFolder(@"c:\temp\test", "test.zip");
```
A zip file of the folder will be in S3 under the key Test.zip.
\ No newline at end of file
A zip file of the folder will be in S3 under the key test.zip.
\ No newline at end of file
Loading