I would like to read a binary file -- of indeterminate length -- directly from a URL in R. Using readBin
to read from a URL, without specifying the file size, does not work.
anImage <- readBin('http://user2010.org/pics/useR-large.png','raw')
Is there another approach that would allow this?