I rolled together a quick extension method (so VS 2008 w/ 3.5 only):
public static class StreamCopier
{
public static void
CopyTo (this Stream from, Stream to)
{
if (!from.CanRead || !to.CanWrite)
{
return;
}
var buffer = from.CanSeek
? new byte [from.Length]
: new byte [DefaultStreamChunkSize];
int read;
while ((read = from.Read (buffer, 0, buffer.Length)) > 0)
{
to.Write (buffer, 0, read);
}
}
private const long DefaultStreamChunkSize = 0x1000;
}
It can be used thus:
using (var input = File.OpenRead (@"C:\wrnpc12.txt"))
{
using (var output = File.OpenWrite (@"C:\wrnpc12.bak"))
{
input.CopyTo (output);
}
}
You can also swap the logic around slightly and write a CopyFrom () method as well.