| drop_get {rdrop2} | R Documentation |
Downloads a file from Dropbox
drop_get(path = NULL, local_file = NULL, overwrite = FALSE, verbose = FALSE, progress = FALSE, dtoken = get_dropbox_token())
path |
This is required The path to the new folder to create relative to root. |
local_file |
The name of the local copy. Leave this blank if you're fine with the original name. |
overwrite |
Default is |
verbose |
By default verbose output is |
progress |
Progress bars are turned off by default. Set to |
dtoken |
The Dropbox token generated by |
## Not run: drop_get(path = 'dataset.zip', local_file = "~/Desktop") # To overwrite the existing file drop_get(path = 'dataset.zip', overwrite = TRUE) ## End(Not run)