Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Saved stream 3 times the size of the read stream?

Status
Not open for further replies.

1DMF

Programmer
Jan 18, 2005
8,795
0
0
GB
Hi,

I seem to be getting a corrupted file when I read a stream and save the read bytes.

I start with a file 70MB and end up with a downloaded file 210MB

Here is my code....

Code:
using (Stream istream = conn.OpenRead(Path.Combine(this.RemoteDir, this.RemoteFile)))
{
    // set up output stream & file
    Stream ostream = File.Create(localfilename, (int) istream.Length);

    try
    {

        // init progress                            
        this.InitProgress(this.RemoteFile, istream.Length);

        // set up read buffer
        byte[] buf = new byte[8192];
        int read = 0;

        // read file
        while ((read = istream.Read(buf, 0, buf.Length)) > 0)
        {
            // write to local file
            ostream.Write(buf,0,buf.Length);

            // update progress
            this.pos = istream.Position;
            this.pgbar.UpdateProgress(this.pos);
        }

    }
    catch(Exception e)
    {
        this.Status.OK = false;
        this.Status.Msg = e.Message;
    }
    finally
    {
        istream.Close();
        ostream.Close();
    }
}

Why is the file trebling in size and corrupting?

Thanks,
1DMF.

"In complete darkness we are all the same, it is only our knowledge and wisdom that separates us, don't let your eyes deceive you."

"If a shortcut was meant to be easy, it wouldn't be a shortcut, it would be the way!"
Free Electronic Dance Music
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top