Directory Transfer using FTP

S

Sateesh

Hello,

Is there any way I can transfer a directory through FTP in my application? I
see some windows API , but they support only file transfer. Is there any
..Net class that helps me doing it.

Thanks in advance
Sateesh.
 
N

Nicholas Paldino [.NET/C# MVP]

It should be noted that in .NET 2.0, native FTP support has been added
through the FtpWebRequest and FtpWebResponse classes.

Hope this helps.
 
S

Sateesh

Presently I am using windows API to transfer a file through FTP, but I do

not know what API helps me to transfer an entire directory.

Thanks

Sateesh.


Nicholas Paldino said:
It should be noted that in .NET 2.0, native FTP support has been added
through the FtpWebRequest and FtpWebResponse classes.

Hope this helps.


--
- Nicholas Paldino [.NET/C# MVP]
- (e-mail address removed)

James Divine said:
There is no native support for FTP in the .Net Framework, but there are
several assemblies that have been written to accomplish it...

here is one of them...

http://www.codeproject.com/csharp/ftp.asp

-James
 
A

AlexL [Xceed]

We have a component that will reliably transfer an entire directory in
with one single method call:

(Xceed FTP for .NET)

http://www.xceedsoft.com/products/ftpnet

Presently I am using windows API to transfer a file through FTP, but I do

not know what API helps me to transfer an entire directory.

Thanks

Sateesh.


Nicholas Paldino said:
It should be noted that in .NET 2.0, native FTP support has been added
through the FtpWebRequest and FtpWebResponse classes.

Hope this helps.


--
- Nicholas Paldino [.NET/C# MVP]
- (e-mail address removed)

James Divine said:
There is no native support for FTP in the .Net Framework, but there are
several assemblies that have been written to accomplish it...

here is one of them...

http://www.codeproject.com/csharp/ftp.asp

-James

:

Hello,

Is there any way I can transfer a directory through FTP in my
application? I
see some windows API , but they support only file transfer. Is there any
..Net class that helps me doing it.

Thanks in advance
Sateesh.

--
Alex Leblanc
Xceed Software Inc.
http://www.xceedsoft.com

Check out our advanced .NET zip file and compression library

Email: (e-mail address removed) (remove the first 'x')
 

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