crypto_download.go 327 B

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