MCPcopy
hub / github.com/rclone/rclone / Fs

Struct Fs

backend/dropbox/dropbox.go:322–339  ·  view source on GitHub ↗

Fs represents a remote dropbox server

Source from the content-addressed store, hash-verified

320
321// Fs represents a remote dropbox server
322type Fs struct {
323 name string // name of this remote
324 root string // the path we are working on
325 opt Options // parsed options
326 ci *fs.ConfigInfo // global config
327 features *fs.Features // optional features
328 srv files.Client // the connection to the dropbox server
329 svc files.Client // the connection to the dropbox server (unauthorized)
330 sharing sharing.Client // as above, but for generating sharing links
331 users users.Client // as above, but for accessing user information
332 team team.Client // for the Teams API
333 slashRoot string // root with "/" prefix, lowercase
334 slashRootSlash string // root with "/" prefix and postfix, lowercase
335 pacer *fs.Pacer // To pace the API calls
336 ns string // The namespace we are using or "" for none
337 batcher *batcher.Batcher[*files.UploadSessionFinishArg, *files.FileMetadata]
338 exportExts []exportExtension
339}
340
341type exportType int
342

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected