Upload content via FTP
ftpUpload.RdThis 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:[email protected]/path/to/file.
This function can handle binary or text content.
Usage
ftpUpload(what, to, asText = inherits(what, "AsIs") || is.raw(what),
..., curl = getCurlHandle())Arguments
- 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
rawor has classAsIsby being enclosed withinI(), it is treated as literal content.- to
the URL to which the content is to be uploaded. This should be the ftp server with the prefix
ftp://and optionally the user login and password, and then the path to the file in which the content is to be stored.- asText
a logical value indicating whether to treat the value of
whatas content, be it text or raw/binary vector. Otherwise,whatis treated as the name of a file.- ...
additional arguments passed on to
curlPerform.- curl
the curl handle to use for the
curlPerform
Value
The result of the curlPerform call.
Note
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.
Examples
if (FALSE) { # \dontrun{
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")
)
} # }