mirror of
https://github.com/rclone/rclone
synced 2024-11-21 22:50:16 +01:00
fs: add MetadataAsOpenOptions
This commit is contained in:
parent
41b1250eaf
commit
24b4148b5e
@ -3,6 +3,7 @@
|
||||
package fs
|
||||
|
||||
import (
|
||||
"context"
|
||||
"errors"
|
||||
"fmt"
|
||||
"net/http"
|
||||
@ -276,6 +277,15 @@ func (o MetadataOption) Mandatory() bool {
|
||||
return false
|
||||
}
|
||||
|
||||
// MetadataAsOpenOptions fetch any metadata to set as open options
|
||||
func MetadataAsOpenOptions(ctx context.Context) (options []OpenOption) {
|
||||
ci := GetConfig(ctx)
|
||||
if ci.MetadataSet != nil {
|
||||
options = append(options, MetadataOption(ci.MetadataSet))
|
||||
}
|
||||
return options
|
||||
}
|
||||
|
||||
// ChunkOption defines an Option which returns a preferred chunk size
|
||||
type ChunkOption struct {
|
||||
ChunkSize int64
|
||||
|
Loading…
Reference in New Issue
Block a user