Using R to save images & .csv's, can I use R to upload them to website (use filezilla to do it manually)? -


first should lot of on head, apologize in advance using incorrect terminology , potentially asking unclear question. i'm doing best.

also, saw thispost; rcurl tool want use task?

every day 4 months i'll analyzing new data, , generating .csv files , .png's need uploaded web site other team members checking. i've (nearly) automated of data collecting, data downloading, analysis, , file saving. analysis carried out in r, , r saves files. use filezilla manually upload new files website. there way use r upload files web site, don't have open filezilla , drag+drop files?

it'd nice run r-code , walk away, knowing once finishes running, newly saved files automatically put on website.

thanks help!

you didn't specify protocol use upload files using filezilla. assume ftp. if so, can use ftpupload function of rcurl:

library(rcurl) ftpupload("yourfile", "ftp://ftp.yourserver.foo/yourfile",      userpwd="username:passwd") 

rcurl had methods scp , should support sftp using ftpupload.


Comments

Popular posts from this blog

Perl - how to grep a block of text from a file -

delphi - How to remove all the grips on a coolbar if I have several coolbands? -

javascript - Animating array of divs; only the final element is modified -