1 2 3 4 5 6 7 8 9
public static void CopyStream(Stream read, Stream write) { int len; byte[] temp = new byte[1024]; while ((len = read.Read(temp, 0, temp.Length)) > 0) { write.Write(temp, 0, len); } }