MCPcopy Create free account
hub / github.com/dropbox/dbxcli / getRecursive

Function getRecursive

cmd/get.go:238–241  ·  view source on GitHub ↗
(dbx filesClient, src, dst string)

Source from the content-addressed store, hash-verified

236}
237
238func getRecursive(dbx filesClient, src, dst string) error {
239 _, err := getRecursiveInternal(dbx, src, dst, nil, getOptions{}, false)
240 return err
241}
242
243func getRecursiveWithResults(dbx filesClient, src, dst string, rootMeta files.IsMetadata, opts getOptions) ([]getResult, error) {
244 return getRecursiveInternal(dbx, src, dst, rootMeta, opts, true)

Calls 1

getRecursiveInternalFunction · 0.85