I am designing a system that needs to upload and download multiple files in a synchronization procedure. The problem I have come across is that .NET does not seem to be able to connect to an FTP server, perform multiple actions, and then close. It is only capable of performing one action per connection (be it upload or download).

Most people would be satisfied putting the upload/download code into a for loop and uploading them that way, but that would create a new connection to the server each time. Our FTP server runs certain lengthy actions whenever a connection is made or closed to prepare for the transfer, so firing these once for each file is not going to work.

We are considering using 7Zip to create file packs for upload/download, however that will create overhead in creating the archives, and the files we are zipping compress less than 10% even on level 9 compression format. Time spent zipping would be much better spent uploading/downloading files.

This is the code I have so far which does perform a single FTP upload:

clsRequest = DirectCast(System.Net.WebRequest.Create("ftp://ftp." + gsDSName + ".com/test.txt"), System.Net.FtpWebRequest)
clsRequest.UsePassive = False
clsRequest.Credentials = New System.Net.NetworkCredential(gsDSLogin, gsDSPass)
clsRequest.Method = System.Net.WebRequestMethods.Ftp.UploadFile

' read in file bytes
Dim clsStreamWriter As System.IO.Stream
clsStreamWriter = clsRequest.GetRequestStream()
Dim bFile() As Byte = System.IO.File.ReadAllBytes(localFile)

' upload file bytes
clsStreamWriter.Write(bFile, 0, bFile.Length)

clsStreamWriter.Close()
clsStreamWriter.Dispose()

So here are my questions: 1. Is there any way to get the pre-packaged .NET libraries to upload and download multiple FTP files without losing connection? 2. If not, are there any FREE 3rd party components that can do this?

There is a 3rd option we are considering to get around the opening/closing server side code, but it would require major redesigns, fixing this issue would be preferable.

link|improve this question

75% accept rate
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.