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 FileInfo struct + IsDir bool + ModTime time.Time + Name string + Size uint64 + type Fs struct + 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) (err 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) (o fs.Object, err error) + func (f *Fs) Precision() time.Duration + func (f *Fs) Put(ctx context.Context, in io.Reader, src fs.ObjectInfo, options ...fs.OpenOption) (fs.Object, 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, t hash.Type) (string, error) + func (o *Object) ModTime(ctx context.Context) time.Time + func (o *Object) Open(ctx context.Context, options ...fs.OpenOption) (rc io.ReadCloser, err error) + func (o *Object) Remote() string + func (o *Object) Remove(ctx context.Context) (err error) + func (o *Object) SetModTime(ctx context.Context, modTime 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) (err error) + type Options struct + Concurrency int + DisableEPSV bool + Enc encoder.MultiEncoder + ExplicitTLS bool + Host string + Pass string + Port string + SkipVerifyTLSCert bool + TLS bool + User string