Directory Transfer using FTP

  • Thread starter Thread starter Sateesh
  • Start date Start date
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.
 
It should be noted that in .NET 2.0, native FTP support has been added
through the FtpWebRequest and FtpWebResponse classes.

Hope this helps.
 
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
 
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')
 
Back
Top