How to use FTP in vb.net

G

Guest

I am fairly new to VB.net. I was wondering if there is any classes already
defined within the .net framework that will let me move some of my files
dynamically to an FTP server.

I want my .net application to keep checking a particular folder on a Windows
server and everytime there is a new file in that folder i want my application
to FTP this file to a given FTP server.

any links to code snippets will be much appreciated.
 
H

Herfried K. Wagner [MVP]

anonymowho said:
I am fairly new to VB.net. I was wondering if there is any classes already
defined within the .net framework that will let me move some of my files
dynamically to an FTP server.

..NET 1.*:

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

..NET 2.0:

..NET Framework Class Library -- 'FtpWebRequest' Class
<URL:http://msdn2.microsoft.com/en-US/library/system.net.ftpwebrequest.aspx>

An FTP client library for .NET 2.0
<URL:http://www.codeproject.com/vb/net/FtpClient.asp>
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top