I have some Electronic devices, I have to copy files from my system to device and device to system using FTP protocol in C#. Currently I am doing with FileZilla. How I can transfer files(Folder/subfolders) using C# program.

link|improve this question

59% accept rate
feedback

2 Answers

Use the FtpWebRequest and FtpWebResponse classes.

FtpWebRequest:

Implements a File Transfer Protocol (FTP) client.

FtpWebResponse:

Encapsulates a File Transfer Protocol (FTP) server's response to a request.

link|improve this answer
feedback

Here is an example of how to create an FTP client in VB.NET. You may also easily convert the code to C# as all .NET languages are CLI compliant:

http://dot-net-talk.blogspot.com/2008/12/how-to-create-ftp-client-in-vbnet.html

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.