Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 5841939
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 22, 20262026-05-22T11:57:13+00:00 2026-05-22T11:57:13+00:00

Please suggest me a good method that can be used to write a stream

  • 0

Please suggest me a good method that can be used to write a stream into a file.

I just need a simple c# function that can take a stream as input and do the job..
I need to do this for very large files ie files > 4GB.

Can this be done better using linq,extension methods etc?

Please provide me a good utility function that can also return the progress in percentage through yield.

Edit: I know about looping through a byte[] and writing it to a file. I’ve tried File.WriteAllBytes method. But,I’m just looking for a very nice way of doing it using linq,yield and extension methods.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-22T11:57:13+00:00Added an answer on May 22, 2026 at 11:57 am

    Edit: Here is a utility function that should do the trick:

    Update: Changed second parameter to file name

        public delegate void ProgressCallback(long position, long total);
        public void Copy(Stream inputStream, string outputFile, ProgressCallback progressCallback)
        {
            using (var outputStream = File.OpenWrite(outputFile))
            {
                const int bufferSize = 4096;
                while (inputStream.Position < inputStream.Length)
                {
                    byte[] data = new byte[bufferSize];
                    int amountRead = inputStream.Read(data, 0, bufferSize);
                    outputStream.Write(data, 0, amountRead);
    
                    if (progressCallback != null)
                        progressCallback(inputStream.Position, inputStream.Length);
                }
                outputStream.Flush();
            }
        }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

can anyone please suggest a good code example of vb.net/c# code to put the
Can anyone please suggest me a good sample code for zooming image in NSImageView.
I am newbie in testing. Can you please suggest me some good tutorials of
Please suggest me a method to save an XML file to the current installation
Please suggest me a good string encryption method . Not XOR, it isn't strong
Please suggest the good PHP Resource to deal with the Blogger API, I need
Possible Duplicate: Operator overloading Hi guys can some one please suggest a good tutorial
Please suggest me some good materials or books or links that provede the methods
Please suggest some good resources to start writing Java Web services.
Please suggest a good MVC framework for Winforms.

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.