added filesystem.Copy(src, dest)

This commit is contained in:
Gani Georgiev
2023-11-28 21:09:53 +02:00
parent 99bdb4e701
commit 995733000f
3 changed files with 42 additions and 0 deletions
+7
View File
@@ -117,6 +117,13 @@ func (s *System) GetFile(fileKey string) (*blob.Reader, error) {
return br, nil
}
// Copy copies the file stored at srcKey to dstKey.
//
// If dstKey file already exists, it is overwritten.
func (s *System) Copy(srcKey, dstKey string) error {
return s.bucket.Copy(s.ctx, dstKey, srcKey, nil)
}
// List returns a flat list with info for all files under the specified prefix.
func (s *System) List(prefix string) ([]*blob.ListObject, error) {
files := []*blob.ListObject{}