Versions in this module Expand all Collapse all v1 v1.54.4 Nov 23, 2020 Changes in this version + func NewFs(name, root string, m configmap.Mapper) (ff fs.Fs, err error) + type Fs struct + func (f *Fs) About(ctx context.Context) (*fs.Usage, error) + func (f *Fs) Copy(ctx context.Context, src fs.Object, remote string) (fs.Object, error) + func (f *Fs) DirMove(ctx context.Context, src fs.Fs, srcRemote, dstRemote string) error + func (f *Fs) Features() *fs.Features + func (f *Fs) Hashes() hash.Set + func (f *Fs) List(ctx context.Context, dir string) (entries fs.DirEntries, err error) + func (f *Fs) Mkdir(ctx context.Context, dir string) error + func (f *Fs) Move(ctx context.Context, src fs.Object, remote string) (fs.Object, error) + func (f *Fs) Name() string + func (f *Fs) NewObject(ctx context.Context, remote string) (obj fs.Object, err error) + func (f *Fs) Precision() time.Duration + func (f *Fs) PublicLink(ctx context.Context, remote string, expire fs.Duration, unlink bool) (string, error) + func (f *Fs) Purge(ctx context.Context) error + func (f *Fs) Put(ctx context.Context, in io.Reader, src fs.ObjectInfo, options ...fs.OpenOption) (obj fs.Object, err error) + func (f *Fs) PutStream(ctx context.Context, in io.Reader, src fs.ObjectInfo, options ...fs.OpenOption) (fs.Object, error) + func (f *Fs) Rmdir(ctx context.Context, dir string) error + func (f *Fs) Root() string + func (f *Fs) String() string + type Object struct + func (o *Object) Fs() fs.Info + func (o *Object) Hash(ctx context.Context, typ hash.Type) (string, error) + func (o *Object) ModTime(ctx context.Context) time.Time + func (o *Object) Open(ctx context.Context, options ...fs.OpenOption) (io.ReadCloser, error) + func (o *Object) Remote() string + func (o *Object) Remove(ctx context.Context) error + func (o *Object) SetModTime(ctx context.Context, mtime time.Time) error + func (o *Object) Size() int64 + func (o *Object) Storable() bool + func (o *Object) String() string + func (o *Object) Update(ctx context.Context, in io.Reader, src fs.ObjectInfo, options ...fs.OpenOption) error + type Options struct + Enc encoder.MultiEncoder + Endpoint string + MountID string + Password string + SetMTime bool + User string