powered by
Function to upload content (in-memory or a file) to Dropbox.
dropbox_put(cred, what, filename = what, curl = getCurlHandle(), ..., verbose = FALSE)
Specifies an object of class DropboxCredentials with Dropobox specific credentials.
the content to upload, which is either the name of a file, in-memory text or a raw vector.
the name of the file to create in the Dropbox folder.
If using in a loop, call getCurlHandle() first and pass the returned value in here (avoids unnecessary footprint)
optional additional curl options (debugging tools mostly).
default is FALSE. Set to true to receive full outcome.
information about the uploaded file on dropbox.
# NOT RUN { dropbox_put(auth, 'DESCRIPTION', 'rDrop_DESCRIPTION') print(dropbox_get(auth, 'rDrop_DESCRIPTION')) # }
Run the code above in your browser using DataLab