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....
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
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