Click here to Skip to main content
15,881,600 members

Uploading large files in using in a built in FTP client in c#

Member 8714829 asked:

Open original thread
// I have this code below that does fine for uploading file from a server to another, but I am concerned if the client have a large file to FTP, I am looking for some code to implement the idea of buffering/streaming chunks of the file instead of FTPing the file in one shot, the line of code that I am thinking to change is "requestStream.Write(fileContents, 0, fileContents.Length);" This is where I need to loop through and send the file in chunks to FTP server, any ideas on how to do that?

C#
FtpWebRequest request = null;
StreamReader sourceStream = null;
Stream requestStream = null;
FtpWebResponse response = null;


try
          {
C#

// Get the object used to communicate with the server.
C#
request = (FtpWebRequest)WebRequest.Create(@ftpServer + tmpFilename);
              request.Method = WebRequestMethods.Ftp.UploadFile;
              request.UsePassive = true;
              request.EnableSsl = true;

// This example assumes the FTP site uses anonymous logon.
C#
request.Credentials = new NetworkCredential(ftpUser, connectionStringToFTP);
// Copy the contents of the file to the request stream.
C#
sourceStream = new StreamReader(@fromSource + tmpFilename);
             byte[] fileContents = Encoding.UTF8.GetBytes(sourceStream.ReadToEnd());
             request.ContentLength = fileContents.Length;

             requestStream = request.GetRequestStream();
             requestStream.Write(fileContents, 0, fileContents.Length);

             if (requestStream != null)
             {
                 requestStream.Flush();
                 requestStream.Close();
                 requestStream.Dispose();
             }

             response = (FtpWebResponse)request.GetResponse();
             bool ftpSuccessful = false;

               if (response.StatusDescription.StartsWith("226"))
               {
                   ftpSuccessful = true;
               }
               else
               {
//.....etc.
C#
}
          }
catch(...)
{
//catch something required to be captured....etc.
C#
}
finally
{
//close/dispose/flush streams here
C#
}
Tags: C#, .NET, FTP

Plain Text
ASM
ASP
ASP.NET
BASIC
BAT
C#
C++
COBOL
CoffeeScript
CSS
Dart
dbase
F#
FORTRAN
HTML
Java
Javascript
Kotlin
Lua
MIDL
MSIL
ObjectiveC
Pascal
PERL
PHP
PowerShell
Python
Razor
Ruby
Scala
Shell
SLN
SQL
Swift
T4
Terminal
TypeScript
VB
VBScript
XML
YAML

Preview



When answering a question please:
  1. Read the question carefully.
  2. Understand that English isn't everyone's first language so be lenient of bad spelling and grammar.
  3. If a question is poorly phrased then either ask for clarification, ignore it, or edit the question and fix the problem. Insults are not welcome.
  4. Don't tell someone to read the manual. Chances are they have and don't get it. Provide an answer or move on to the next question.
Let's work to help developers, not make them feel stupid.
Please note that all posts will be submitted under the http://www.codeproject.com/info/cpol10.aspx.



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900