VB .NET FTP

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • a

    #1

    VB .NET FTP

    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


  • Cor Ligthert [MVP]

    #2
    Re: VB .NET FTP

    http://msdn2.microsoft.com/en-us/library/ms144318.aspx

    i

    Cor


    "a" <a@mail.comschr eef in bericht
    news:emMzmXmzGH A.4092@TK2MSFTN GP04.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
    >
    >

    Comment

    • Herfried K. Wagner [MVP]

      #3
      Re: VB .NET FTP

      "a" <a@mail.comschr ieb:
      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/>

      Comment

      • a

        #4
        Re: VB .NET FTP

        "Herfried K. Wagner [MVP]" <hirf-spam-me-here@gmx.at>
        ???????:uVuFY1n zGHA.3440@TK2MS FTNGP06.phx.gbl ...
        "a" <a@mail.comschr ieb:
        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



        Comment

        • Terry Olsen

          #5
          Re: VB .NET FTP

          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.




          Comment

          • Mohammadreza Pahlevan

            #6
            Re: VB .NET FTP

            If you want to use Http to transfer a file "WebClient" class is enough.For
            ftp using use "WebRequest " class.

            "a" <a@mail.comwrot e in message
            news:emMzmXmzGH A.4092@TK2MSFTN GP04.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
            >
            >

            Comment

            Working...