I'm trying to find an efficient way of reading a stream of data directly writing to a filestream. Is there a way?
I don't want to read everything into byte[] then write the byte[] to the filestream, I want to avoid the reading to byte[] as you wouldnt know how big this file would be. (and its not quite a file copy)

any ideas?