Home All Groups Group Topic Archive Search About
Author
2 Sep 2006 8:00 AM
a
Hi,
If I want to write a FTP client, which class should I use to perform the
FTP?
Can I use HTTP to transfer file as well? How to do this by VB .NET
Thanks

Author
2 Sep 2006 8:20 AM
Cor Ligthert [MVP]
http://msdn2.microsoft.com/en-us/library/ms144318.aspx

i

Cor


Show quoteHide quote
"a" <a@mail.com> schreef in bericht
news:emMzmXmzGHA.4092@TK2MSFTNGP04.phx.gbl...
> Hi,
> If I want to write a FTP client, which class should I use to perform the
> FTP?
> Can I use HTTP to transfer file as well? How to do this by VB .NET
> Thanks
>
>
Author
2 Sep 2006 10:48 AM
Herfried K. Wagner [MVP]
"a" <a@mail.com> schrieb:
> If I want to write a FTP client, which class should I use to perform the
> FTP?

..NET 1.*:

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

--
M S   Herfried K. Wagner
M V P  <URL:http://dotnet.mvps.org/>
V B   <URL:http://classicvb.org/petition/>
Author
3 Sep 2006 12:56 AM
a
"Herfried K. Wagner [MVP]" <hirf-spam-me-here@gmx.at>
???????:uVuFY1nzGHA.3***@TK2MSFTNGP06.phx.gbl...
> "a" <a@mail.com> schrieb:
> > If I want to write a FTP client, which class should I use to perform the
> > FTP?
>
> .NET 1.*:
>
> Accessing FTP servers in .NET applications
> <URL:http://dotnet.mvps.org/dotnet/faqs/?id=ftp&lang=en>
>
> --
>  M S   Herfried K. Wagner
> M V P  <URL:http://dotnet.mvps.org/>
>  V B   <URL:http://classicvb.org/petition/>

Hi

Thank you very much for your reply.
But, the FtpWebRequest Class is only limited to a few platforms. I have not
installed SP2, therefore, the class may not be the solution for me. Is there
any other way to use the FTP for my application? Is there any FTP module
written by other developers?

Thanks
Author
3 Sep 2006 1:28 AM
Terry Olsen
> Thank you very much for your reply.
> But, the FtpWebRequest Class is only limited to a few platforms. I have
> not
> installed SP2, therefore, the class may not be the solution for me. Is
> there
> any other way to use the FTP for my application? Is there any FTP module
> written by other developers?

This is written for the 1.1 Platform. It's a simple console program to
download a file from an FTP server. If you have any questions, don't be
afraid to email me.

http://boycot.no-ip.com/vb/GETFTPSource.htm
Author
3 Sep 2006 6:14 AM
Mohammadreza Pahlevan
If you want to use Http to transfer a file "WebClient" class is enough.For
ftp using use "WebRequest" class.

Show quoteHide quote
"a" <a@mail.com> wrote in message
news:emMzmXmzGHA.4092@TK2MSFTNGP04.phx.gbl...
> Hi,
> If I want to write a FTP client, which class should I use to perform the
> FTP?
> Can I use HTTP to transfer file as well? How to do this by VB .NET
> Thanks
>
>