How to upload a file to a server via FTP using R?

前端 未结 4 1258
谎友^
谎友^ 2020-12-09 11:58

How to upload a file to a server via FTP using R?

4条回答
  •  旧时难觅i
    2020-12-09 12:06

    If you can access it from the command line, then you can do:

    system("ftp ...") # where ... is the argument list
    

    You could easily wrap this in an R function if you plan on doing it often.

提交回复
热议问题