Download Files from Dropbox Programmatically with R

R-bloggers 2013-04-10

(This article was first published on theBioBucket*, and kindly contributed to R-bloggers)
Here is a usefull snippet that I stole from qdap::url_dl to download files from my Dropbox to the working directory. Argument x is the document name and d the document key.
dl_from_dropbox                         require(RCurl)                         bin                                             ssl.verifypeer = FALSE)                         con                         writeBin(bin, con)                         close(con)                         message(noquote(paste(x, "read into", getwd())))                                                 } # Example: dl_from_dropbox("GViewer_Embeds.txt", "06fqlz6gswj80nj") shell.exec("GViewer_Embeds.txt") 

To leave a comment for the author, please follow the link and comment on his blog: theBioBucket*.

R-bloggers.com offers daily e-mail updates about R news and tutorials on topics such as: visualization (ggplot2, Boxplots, maps, animation), programming (RStudio, Sweave, LaTeX, SQL, Eclipse, git, hadoop, Web Scraping) statistics (regression, PCA, time series,ecdf, trading) and more...