Upload content via FTP
This function is a relatively simple wrapper for curlPerform
which allows the caller to upload a file to an FTP server.
One can upload the contents of a file from the local file system or
the contents already in memory.
One specifies the FTP server and the fully-qualified file name and path where the contents are
to be stored.
One can specify the user login and password via the userpwd
option
for curlPerform
via the ... parameter, or
one can put this information directly in the target URL (i.e. to
)
in the form ftp://login:password@machine.name/path/to/file
.
This function can handle binary or text content.
ftpUpload(what, to, asText = inherits(what, "AsIs") || is.raw(what), ..., curl = getCurlHandle())
what |
the name of a local file or the contents to be uploaded. This can
can be text or binary content. This can also be an open connection.
If this value is |
to |
the URL to which the content is to be uploaded. This should be the ftp server
with the prefix |
asText |
a logical value indicating whether to treat the value of |
... |
additional arguments passed on to |
curl |
the curl handle to use for the |
The result of the curlPerform
call.
One can also provide additional FTP commands that are executed
before and after the upload as part of the request.
Use the prequote, quote, and postquote options in curlPerform
for these.
Duncan Temple Lang
FTP, libcurl
## Not run: ftpUpload(I("Some text to be uploaded into a file\nwith several lines"), "ftp://login:password@laptop17/ftp/zoe", ) ftpUpload(I("Some text to be uploaded into a file\nwith several lines"), "ftp://laptop17/ftp/zoe", userpwd = "login:password" ) ftpUpload(system.file("examples", "system.png", package = "RCurl"), "ftp://login:password@laptop17/ftp/Election.rda", postquote = c("CWD subdir", "RNFR Election.rda", "RNTO ElectionPolls.rda") ) ## End(Not run)
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.