Retrieve a file from an FTP address?

  • Thread starter Thread starter Luis
  • Start date Start date
L

Luis

How can I easily download one file from an FTP addrss in VB.NET? I just need
to download it top a location on the users drive and manipulate it later?

I know this must be a dumb question, but I'm only an as needed type
programmer and don't this everyday!!

TIA
Luis
 
Luis,
..NET does not have built-in support for FTP. However FTP being a TCP/IP
protocol you can add FTP to .NET easy enough.

Matthew MacDonald's book "Microsoft Visual Basic .NET Programmer's Cookbook"
from MS Press has a topic where he gives you a sample FTPClient class you
can use to access files via FTP.

There are also third party products and other samples on the web,
unfortunately I do not have links handy.

Hope this helps
Jay
 
Luis said:
How can I easily download one file from an FTP addrss in VB.NET? I just need
to download it top a location on the users drive and manipulate it later?

I know this must be a dumb question, but I'm only an as needed type
programmer and don't this everyday!!

VB.NET:

<http://www.freevbcode.com/ShowCode.Asp?ID=4655>
<http://www.allapi.net/downloads/NetFTP.zip>
<http://www.visualbuilder.com/article/viewarticle.asp?id=1234>
<http://www.abderaware.com/ (company site)>

C#:

<http://www.csharphelp.com/archives/archive9.html>
<http://www.codeproject.com/csharp/FTPDriver1.asp>
 
Back
Top