Jan 2, 2007 #1 M Mondeo Well-known member Joined Nov 10, 2006 Messages 128 Location Sunny Lancashire How can I upload a file to an FTP server using a windows forms application, is there a class that deals with FTP?
How can I upload a file to an FTP server using a windows forms application, is there a class that deals with FTP?
Jan 2, 2007 #2 PlausiblyDamp Administrator Joined Sep 4, 2002 Messages 6,155 Location Lancashire, UK User Rank *Expert* If you are using .Net 2 then the classes System.Net.FtpWebRequest and System.Net.FtpWebResponse should do the trick. If not search these forums - Im sure someone posted an FTP wrapper class a while ago.
If you are using .Net 2 then the classes System.Net.FtpWebRequest and System.Net.FtpWebResponse should do the trick. If not search these forums - Im sure someone posted an FTP wrapper class a while ago.
Jan 5, 2007 #3 A amir100 Well-known member Joined Mar 14, 2004 Messages 190 Location Indonesia MSDN provides enough examples for a quick start. As PlausiblyDamp said, search for the classes System.Net.FtpWebRequest and System.Net.FtpWebResponse.
MSDN provides enough examples for a quick start. As PlausiblyDamp said, search for the classes System.Net.FtpWebRequest and System.Net.FtpWebResponse.