me gustaría descargar todas las imágenes desde this site pero después de descargar todas las fotos están dañadas. ¿Qué debo hacer para descargarlos con éxito?Descargar png/jpg con R
Mi código:
library(XML)
dir.create('c:/photos')
urls<-paste("http://thedevilsguard.tumblr.com/page/",1:1870,sep="")
doc<-htmlParse(urls[1])
links<-unique(unlist(xpathApply(doc,'//div[@class="timestamp"]/a',xmlGetAttr,'href')))
for (i in 1:length(links)){
doc2<-htmlParse(links[i])
link<-xpathApply(doc2,'//div[@class="centre photopage"]//p//img',xmlGetAttr,'src')[[1]][1]
download.file(link,paste("C:/photos/",basename(link),""))
}
Funciona bien para mí en Ubuntu 11.10. –