(dbx filesClient, src, dst string, rootMeta files.IsMetadata, opts getOptions)
| 241 | } |
| 242 | |
| 243 | func getRecursiveWithResults(dbx filesClient, src, dst string, rootMeta files.IsMetadata, opts getOptions) ([]getResult, error) { |
| 244 | return getRecursiveInternal(dbx, src, dst, rootMeta, opts, true) |
| 245 | } |
| 246 | |
| 247 | func getRecursiveInternal(dbx filesClient, src, dst string, rootMeta files.IsMetadata, opts getOptions, collectResults bool) ([]getResult, error) { |
| 248 | arg := files.NewListFolderArg(src) |
no test coverage detected