CFILE.RdThis function and class allow us to work with C-level
FILE handles.
The intent is to be able to pass these to libcurl
as options so that it can read or write from or to the file.
We can also do this with R connections and specify callback functions
that manipulate these connections. But using
the C-level FILE handle is likely to be significantly faster for large
files.
The close method allows us to explicitly flush and close the file
from within R.
CFILE(filename, mode = "r")This is a simple interface to the C routine fopen.
An object of class CFILE which is
has a single slot name ref which is an external pointer
holding the address of the FILE object in C.
Man page for fopen
curlPerform and the readdata
if (FALSE) { # \dontrun{
filename = system.file("tests", "amazon3.R", package = "RCurl")
f = CFILE(filename)
if(url.exists('http://s3.amazonaws.com/'))
curlPerform(url = "http://s3.amazonaws.com/RRupload/duncan2",
upload = TRUE,
readdata = f@ref,
infilesize = file.info(filename)[1, "size"])
} # }