FTP communication

  • Thread starter Thread starter Mircea Pleteriu
  • Start date Start date
M

Mircea Pleteriu

Hi all,

I need to transfer data via FTP from withing my .NET console application.
In VC++ there is the CFtpConnection class to handle the FTP communication.

Does anybody know how to handle if from .NET?
 
Hi Mircea,

As far as I know do you have the same as in C++ and is there no complete
managed code for FTP. (You have to use the API calls and embed those in your
program)

Cor
I need to transfer data via FTP from withing my .NET console application.
In VC++ there is the CFtpConnection class to handle the FTP
communication.
 
Hi Chad,

I saw this before is it source, and then what source?
I could not find it on the side.

I could not find until now any FTP dotNet components, but that can be my
fault of course.

(I have written myself of course a FTP program with all API calls in a
managed code program, but that is not full managed code in my opinion.)

Cor
 
Cor said:
I saw this before is it source, and then what source?

Its an assembly, just download and add a reference.

The dot net page lists what its written in with links to source if you want
that too. Its Delphi.net, but with .net it doesnt matter. And assembly is an
assembly.
 
Hi Rob,

I thought I had seen it but could not find it anymore, and thought I had
dreamed it.

I try it.

Thanks

Cor
 
Mircea,
In addition to the others comments.

Matthew MacDonald's book "Microsoft Visual Basic >NET Programmer's Cookbook"
from MS Press includes a topic that discusses how to write an FtpClient
similar to the KB article that Rob posted.

Hope this helps
Jay
 
Back
Top