What is the best way to copy the contents of one stream to another? Is there a standard utility method for this?
|
From .NET 4.5 on, there is the
This will return a
Note that depending on where the call to The Additionally, this call (and this is an implementation detail subject to change) still sequences reads and writes (it just doesn't waste a threads blocking on I/O completion). From .NET 4.0 on, there's is the
For .NET 3.5 and before There isn't anything baked into the framework to assist with this; you have to copy the content manually, like so:
|
|||||||||||||||
|
|
MemoryStream has .WriteTo(outstream); and .NET 4.0 has .CopyTo on normal stream object. .NET 4.0:
|
|||||||||||
|
|
I use the following extension methods. They have optimized overloads for when one stream is a MemoryStream.
|
|||
|
|
|
The basic questions that differentiate implementations of "CopyStream" are:
The answers to these questions result in vastly different implementations of CopyStream and are dependent on what kind of streams you have and what you are trying to optimize. The "best" implementation would even need to know what specific hardware the streams were reading and writing to. |
|||
|
Use break instead of the return. The retrun prevents the input.Position = TempPos from being executed. |
||||
|
|
|
.NET Framework 4 introduce new "CopyTo" method of Stream Class of System.IO namespace. Using this method we can copy one stream to another stream of different stream class. Here is example for this.
|
||||
|
|
|
Unfortunately, there is no really simple solution. You can try something like that:
But the problem with that that different implementation of the Stream class might behave differently if there is nothing to read. A stream reading a file from a local harddrive will probably block until the read operaition has read enough data from the disk to fill the buffer and only return less data if it reaches the end of file. On the other hand, a stream reading from the network might return less data even though there are more data left to be received. Always check the documentation of the specific stream class you are using before using a generic solution. |
|||||
|
|
There may be a way to do this more efficiently, depending on what kind of stream you're working with. If you can convert one or both of your streams to a MemoryStream, you can use the GetBuffer method to work directly with a byte array representing your data. This lets you use methods like Array.CopyTo, which abstract away all the issues raised by fryguybob. You can just trust .NET to know the optimal way to copy the data. |
|||
|
|
|
if you want a procdure to copy a stream to other the one that nick posted is fine but it is missing the position reset, it should be
but if it is in runtime not using a procedure you shpuld use memory stream
|
|||||
|
|
There is actually, a less heavy-handed way of doing a stream copy. Take note however, that this implies that you can store the entire file in memory. Don't try and use this if you are working with files that go into the hundreds of megabytes or more, without caution.
NOTE: There may also be some issues concerning binary data and character encodings. |
|||||||||
|
|
Since none of the answers have covered an asynchronous way of copying from one stream to another, here is a pattern that I've successfully used in a port forwarding application to copy data from one network stream to another. It lacks exception handling to emphasize the pattern.
|
|||
|