crypto_multicopy.go 338 B

123456789101112
  1. package osscrypto
  2. import (
  3. "fmt"
  4. "github.com/aliyun/aliyun-oss-go-sdk/oss"
  5. )
  6. // CopyFile with multi part mode, temporarily not supported
  7. func (bucket CryptoBucket) CopyFile(srcBucketName, srcObjectKey, destObjectKey string, partSize int64, options ...oss.Option) error {
  8. return fmt.Errorf("CryptoBucket doesn't support CopyFile")
  9. }