]> Cypherpunks.ru repositories - gostls13.git/commit
archive/zip: add AddFS method to zip Writer
authorMauri de Souza Meneguzzo <mauri870@gmail.com>
Thu, 27 Jul 2023 23:11:59 +0000 (23:11 +0000)
committerGopher Robot <gobot@golang.org>
Mon, 31 Jul 2023 18:10:41 +0000 (18:10 +0000)
commit845fff35c6c37186936eb34c5a08b1a99483d9b8
tree7175976b24fe77e5b7cdd87ac89dcb92a228612b
parent789980ec0e4f6512cd021d238e6c8e309a7e1cf2
archive/zip: add AddFS method to zip Writer

The method AddFS can be used to add the contents of a fs.FS filesystem
to a zip archive.
This method walks the directory tree starting at the root of the filesystem
and adds each file to the archive.

Fixes #54898

Change-Id: I80511cbd91a1d7e09ee52d2d1b09fb5eed25f45f
GitHub-Last-Rev: 1e17f2e6bae60cf5168d687dd1357ab58a883675
GitHub-Pull-Request: golang/go#61602
Reviewed-on: https://go-review.googlesource.com/c/go/+/513438
Reviewed-by: David Chase <drchase@google.com>
TryBot-Result: Gopher Robot <gobot@golang.org>
Auto-Submit: Ian Lance Taylor <iant@google.com>
Reviewed-by: Ian Lance Taylor <iant@google.com>
Run-TryBot: Ian Lance Taylor <iant@golang.org>
Run-TryBot: Ian Lance Taylor <iant@google.com>
api/next/54898.txt [new file with mode: 0644]
src/archive/zip/writer.go
src/archive/zip/writer_test.go