Fs represents a remote dropbox server
| 320 | |
| 321 | // Fs represents a remote dropbox server |
| 322 | type 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 | |
| 341 | type exportType int |
| 342 |
nothing calls this directly
no outgoing calls
no test coverage detected