INTELLIGENT WORK FORUMS FOR COMPUTER PROFESSIONALS
Contact US
Thanks. We have received your request and will respond promptly.
Log In
Come Join Us!
Are you a Computer / IT professional? Join Tek-Tips Forums!
- Talk With Other Members
- Be Notified Of Responses
To Your Posts
- Keyword Search
- One-Click Access To Your
Favorite Forums
- Automated Signatures
On Your Posts
- Best Of All, It's Free!
*Tek-Tips's functionality depends on members receiving e-mail. By joining you are opting in to receive e-mail.
Posting Guidelines
Promoting, selling, recruiting, coursework and thesis posting is forbidden. Students Click Here
|
Saved stream 3 times the size of the read stream?
Saved stream 3 times the size of the read stream? Saved stream 3 times the size of the read stream?
1DMF (Programmer)
(OP)
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....
CODEusing (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
Red Flag SubmittedThank you for helping keep Tek-Tips Forums free from inappropriate posts. The Tek-Tips staff will check this out and take appropriate action.
|
|
|
Join Tek-Tips® Today!
Join your peers on the Internet's largest technical computer professional community.
It's easy to join and it's free.
Here's Why Members Love Tek-Tips Forums:
Talk To Other Members
- Notification Of Responses To Questions
- Favorite Forums One Click Access
- Keyword Search Of All Posts, And More...
Register now while it's still free!
Already a member? Close this window and log in.
Join Us Close
RE: Saved stream 3 times the size of the read stream?
CODE
Should be...
CODE
D'oh!
"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