What do you mean by "turn a stream"? Is this a stream that you're
reading from somewhere else? If so, just create a FileStream to write
to, and iterate, reading a chunk from the incoming stream and writing
it to the FileStream, repeating until you've reached the end of the
incoming stream.