up vote 102 down vote favorite
38
share [g+] share [fb]

What is the best way to copy the contents of one stream to another? Is there a standard utility method for this?

link|improve this question

71% accept rate
feedback

10 Answers

up vote 145 down vote accepted

Feel free to edit this community post to fix bugs or implement improvements.

public static void CopyStream(Stream input, Stream output)
{
    byte[] buffer = new byte[32768];
    int read;
    while ((read = input.Read(buffer, 0, buffer.Length)) > 0)
    {
        output.Write (buffer, 0, read);
    }
}

N.B. From .NET 4.0, there's a Stream.CopyTo method:

input.CopyTo(output);

And you have to set the position to 0 afterwards.

input.Position = output.Position = 0;
link|improve this answer
14  
It looks correct to me. I usually use the "while ((read = stream.Read(buffer, 0, buffer.Length)) > 0)" idiom, but this is certainly okay :) – Jon Skeet Oct 23 '08 at 15:21
This makes me want an IOUtils clone for .Net. Thanks anyway. +1 – Henning Feb 20 '09 at 8:58
28  
Note that this is not the fastest way to do it. In the provided code snippet, you have to wait for the Write to complete before a new block is read. When doing the Read and Write asynchronously this waiting will disappear. In some situation this will make the copy twice as fast. However it will make the code a lot more complicated so if speed is not an issue, keep it simple and use this simple loop. This question on StackOverflow has some code that illustrates the async Read/Write: stackoverflow.com/questions/1540658/… Regards, Sebastiaan – Sebastiaan Megens Nov 6 '09 at 7:10
Is 32,768 the recommended byte size? I've seen smaller amounts before, such as 4,096. – Josh Jan 7 '11 at 16:02
@Josh 32,768 is a copy with 32 KB chunks. 4096 uses 4 KB chunks. It'll be slightly slower but use less memory. – Nick Jan 7 '11 at 16:11
show 3 more comments
feedback

I use the following extension methods. They have optimized overloads for when one stream is a MemoryStream.

    public static void CopyTo(this Stream src, Stream dest)
    {
        int size = (src.CanSeek) ? Math.Min((int)(src.Length - src.Position), 0x2000) : 0x2000;
        byte[] buffer = new byte[size];
        int n;
        do
        {
            n = src.Read(buffer, 0, buffer.Length);
            dest.Write(buffer, 0, n);
        } while (n != 0);           
    }

    public static void CopyTo(this MemoryStream src, Stream dest)
    {
        dest.Write(src.GetBuffer(), (int)src.Position, (int)(src.Length - src.Position));
    }

    public static void CopyTo(this Stream src, MemoryStream dest)
    {
        if (src.CanSeek)
        {
            int pos = (int)dest.Position;
            int length = (int)(src.Length - src.Position) + pos;
            dest.SetLength(length); 

            while(pos < length)                
                pos += src.Read(dest.GetBuffer(), pos, length - pos);
        }
        else
            src.CopyTo((Stream)dest);
    }
link|improve this answer
feedback

MemoryStream has .WriteTo(outstream);

and .NET 4.0 has .CopyTo on normal stream object.

link|improve this answer
I do not see many samples on the web using these methods. Is this because they are fairly new or is there some limitations? – GeneS Nov 24 '11 at 17:21
It's because they are new in .NET 4.0. Stream.CopyTo() basically does exactly the same for loop that the approved answer does, with some additional sanity checks. The default buffer size is 4096, but there is also an overload to specify a larger one. – Michael Edenfield Dec 1 '11 at 22:28
feedback

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.

public static void CopyStream(Stream input, Stream output)
{
  using (StreamReader reader = new StreamReader(input))
  using (StreamWriter writer = new StreamWriter(output))
  {
    writer.Write(reader.ReadToEnd());
  }
}

NOTE: There may also be some issues concerning binary data and character encodings.

link|improve this answer
3  
The default constructor for StreamWriter creates a UTF8 stream without a BOM (msdn.microsoft.com/en-us/library/fysy0a4b.aspx) so there's no danger of encoding problems. Binary data almost certainly shouldn't be copied this way. – David Kemp Nov 9 '09 at 16:27
1  
one could easily argue that loading "the entire file in memory" is hardly considered "less heavy-handed". – Seph Jan 3 at 12:23
feedback

The basic questions that differentiate implementations of "CopyStream" are:

  • size of the reading buffer
  • size of the writes
  • Can we use more than one thread (writing while we are reading).

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.

link|improve this answer
... or the best implementation could have overloads to allow you to specify the buffer size, write size, and whether threads are allowed? – MarkJ Mar 23 '10 at 16:40
feedback

Unfortunately, there is no really simple solution. You can try something like that:

Stream s1, s2;
byte[] buffer = new byte[4096];
int bytesRead = 0;
while (bytesRead = s1.Read(buffer, 0, buffer.Length) > 0) s2.Write(buffer, 0, bytesRead);
s1.Close(); s2.Close();

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.

link|improve this answer
1  
The generic solution will work here - Nick's answer is a fine one. The buffer size is an arbitrary choice of course, but 32K sounds reasonable. I think Nick's solution is right not to close the streams though - leave that to the owner. – Jon Skeet Oct 23 '08 at 15:31
feedback

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.

link|improve this answer
feedback

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

public static void CopyStream(Stream input, Stream output)
{
    byte[] buffer = new byte[32768];
    long TempPos = input.Position;
    while (true)    
    {
        int read = input.Read (buffer, 0, buffer.Length);
        if (read <= 0)
            return;
        output.Write (buffer, 0, read);
    }
    input.Position = TempPos;// or you make Position = 0 to set it at the start
}

but if it is in runtime not using a procedure you shpuld use memory stream

Stream output = new MemoryStream();
byte[] buffer = new byte[32768]; // or you specify the size you want of your buffer
long TempPos = input.Position;
while (true)    
{
    int read = input.Read (buffer, 0, buffer.Length);
    if (read <= 0)
        return;
    output.Write (buffer, 0, read);
 }
    input.Position = TempPos;// or you make Position = 0 to set it at the start
link|improve this answer
2  
You shouldn't change the position of the input stream, because not all streams allow random access. In a network stream, for example, you cannot change position, only read and/or write. – R. Martinho Fernandes Oct 20 '10 at 0:50
feedback
public static void CopyStream(Stream input, Stream output) 
{     
    byte[] buffer = new byte[32768];     
    long TempPos = input.Position;     
    while (true)         
    {         
        int read = input.Read (buffer, 0, buffer.Length);         
        if (read <= 0) break;         
        output.Write (buffer, 0, read);     
    }     
    input.Position = TempPos;// or you make Position = 0 to set it at the start 
}

Use break instead of the return. The retrun prevents the input.Position = TempPos from being executed.

link|improve this answer
feedback

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.

const int BUFFER_SIZE = 4096;

static byte[] bufferForRead = new byte[BUFFER_SIZE];
static byte[] bufferForWrite = new byte[BUFFER_SIZE];

static Stream sourceStream = new MemoryStream();
static Stream destinationStream = new MemoryStream();

static void Main(string[] args)
{
    // Initial read from source stream
    sourceStream.BeginRead(bufferForRead, 0, BUFFER_SIZE, BeginReadCallback, null);
}

private static void BeginReadCallback(IAsyncResult asyncRes)
{
    // Finish reading from source stream
    int bytesRead = sourceStream.EndRead(asyncRes);
    // Make a copy of the buffer as we'll start another read immediately
    Array.Copy(bufferForRead, 0, bufferForWrite, 0, bytesRead);
    // Write copied buffer to destination stream
    destinationStream.BeginWrite(bufferForWrite, 0, bytesRead, BeginWriteCallback, null);
    // Start the next read (looks like async recursion I guess)
    sourceStream.BeginRead(bufferForRead, 0, BUFFER_SIZE, BeginReadCallback, null);
}

private static void BeginWriteCallback(IAsyncResult asyncRes)
{
    // Finish writing to destination stream
    destinationStream.EndWrite(asyncRes);
}
link|improve this answer
Surely if the second read completes before the first write then you will write over the contents of bufferForWrite from the first read, before it is is written out. – Mr J Nov 18 '11 at 9:50
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.