VB .NET FTP

  • Thread starter Thread starter a
  • Start date Start date
A

a

Hi,
If I want to write a FTP client, which class should I use to perform the
FTP?
Can I use HTTP to transfer file as well? How to do this by VB .NET
Thanks
 
Herfried K. Wagner said:
.NET 1.*:

Accessing FTP servers in .NET applications
<URL:http://dotnet.mvps.org/dotnet/faqs/?id=ftp&lang=en>

Hi

Thank you very much for your reply.
But, the FtpWebRequest Class is only limited to a few platforms. I have not
installed SP2, therefore, the class may not be the solution for me. Is there
any other way to use the FTP for my application? Is there any FTP module
written by other developers?

Thanks
 
Thank you very much for your reply.
But, the FtpWebRequest Class is only limited to a few platforms. I have
not
installed SP2, therefore, the class may not be the solution for me. Is
there
any other way to use the FTP for my application? Is there any FTP module
written by other developers?

This is written for the 1.1 Platform. It's a simple console program to
download a file from an FTP server. If you have any questions, don't be
afraid to email me.

http://boycot.no-ip.com/vb/GETFTPSource.htm
 
If you want to use Http to transfer a file "WebClient" class is enough.For
ftp using use "WebRequest" class.
 
Back
Top