N Nicholas Paldino [.NET/C# MVP] May 11, 2004 #2 Ken, In the current version, there is not, you would have to call the WinInet functions through the P/Invoke layer or use a third-party component. In the next version of .NET, there will be support for downloading files from an FTP source. Hope this helps.
Ken, In the current version, there is not, you would have to call the WinInet functions through the P/Invoke layer or use a third-party component. In the next version of .NET, there will be support for downloading files from an FTP source. Hope this helps.
M Morten Wennevik May 11, 2004 #3 Hi Ken, No, you will have to create your own classes or use one of the 3rd party libraries available. Happy coding! Morten Wennevik [C# MVP]
Hi Ken, No, you will have to create your own classes or use one of the 3rd party libraries available. Happy coding! Morten Wennevik [C# MVP]
J Jon Davis May 12, 2004 #4 Yes, but not directly. You have to use System.Net.Sockets.Socket and do it manually. Jon