Reputation: 791
I am looking for a way to transfer a lot of files over a long period of time from a client to a server. The connection between the client and the server is not reliable and slow.
I thought about using the FTP protocol. I saw the netftp client. I now need a ftp server in .net also.
The most important feature that I need is reliable connection resuming. Something that I can rely on to just start and end over a period of time reliably.
I didn't find many ftp servers that were written in c#.
Thank you.
Upvotes: 0
Views: 1964
Reputation: 2220
you can use Background Intelligent Transfer Service in windows. http://msdn.microsoft.com/en-us/library/bb968799(v=vs.85).aspx
Use BITS for applications that need to:
a .net wrapper is available for BITS - http://sharpbits.codeplex.com/
Upvotes: 1