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 7178931
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T17:01:35+00:00 2026-05-28T17:01:35+00:00

I was trying to copy files from FTP using FTPWebRequest in my wcf block

  • 0

I was trying to copy files from FTP using FTPWebRequest in my wcf block here is the code below.

  long cl = response.ContentLength;
                int bufferSize = 4155;
                int readCount=0;
                int i = 0;
                byte[] newbuffer;
                byte[] buffer = new byte[bufferSize];

                //Follow the Using here
                using (Stream input = response.GetResponseStream())
                {
                    readCount = input.Read(buffer, 0, buffer.Length);
                    if (readCount > 0)
                    {
                        newbuffer = new byte[readCount];
                        Array.Copy(buffer, newbuffer, readCount);
                        outputStream.Write(newbuffer.ToArray(), 0, readCount);


                    }
                    outputStream.Close();
                }

               ftpStream.Close();

                response.Close();

            }

in the “USING” block was suggested by “DotNetUser” member,i found one thing in the code
outputStream.Write(newbuffer.ToArray(), 0, readCount); throwing an exception at “ToArray”,it suppose to be like outputStream.Write(newbuffer, 0, readCount);please suggest me.

  • 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-28T17:01:37+00:00Added an answer on May 28, 2026 at 5:01 pm

    The newbuffer variable is already an array, so you don’t need to convert it to an array. You can just use:

    outputStream.Write(newbuffer, 0, readCount);
    

    However, there is no reason to create the newbuffer array at all. Just write the data from the buffer array:

    readCount = input.Read(buffer, 0, buffer.Length);
    if (readCount > 0) {
      outputStream.Write(buffer, 0, readCount);
    }
    

    However, this will only read the first block of data from the stream. You need to loop until there is no more data to read:

    do {
      readCount = input.Read(buffer, 0, buffer.Length);
      if (readCount > 0) {
        outputStream.Write(buffer, 0, readCount);
      }
    } until (readCount == 0);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm trying to copy some files from one network share to another using File::Copy.
I'm trying to get PowerShell to copy files from a remote computer (on which
I have a list of files that I'm trying to copy and move (using
I am trying to copy a file using the following code: 1: int data=0;
I am trying to copy file(s) using webrequest inside WCF. I need some suggestions.
I am trying to copy a couple of image files from my MainBundle/SampleImages folder
I am trying to copy some files across from my app bundle to the
I'm trying to use ANT to copy files from one directory to another directory
I'm trying to copy a number of files from a directory. I want to
I am trying to copy some zipped file from FTP to my local system

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.