Ftp Efficiency

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

    #1

    Ftp Efficiency

    Hello,

    Using vs2005 and the new built-in Ftp functionality. I need to transfer
    a gigantic amount of data (15 GB) using my app. The current way is that
    I ZIP (or RAR) the data and transfer it to the server via FTP. Is
    there a more efficient way to transfer data? Does FTP go as fast as the
    pipe allows? (btw, the transferred data is binary, not text).

    Thanks.
  • Nicholas Paldino [.NET/C# MVP]

    #2
    Re: Ftp Efficiency

    Frank,

    This isn't an FTP question. FTP is just a protocol that is used over
    the communications layer (sockets using TCP/IP). It doesn't have a say in
    how fast it sends data.

    The general answer is, yes, it will send data as fast as it can.
    Whether or not it is binary or text doesn't matter, since text is just bytes
    anyways...

    Hope this helps.


    --
    - Nicholas Paldino [.NET/C# MVP]
    - mvp@spam.guard. caspershouse.co m

    "Frank Rizzo" <none@none.co m> wrote in message
    news:unXjn5ACGH A.2704@TK2MSFTN GP15.phx.gbl...[color=blue]
    > Hello,
    >
    > Using vs2005 and the new built-in Ftp functionality. I need to transfer a
    > gigantic amount of data (15 GB) using my app. The current way is that I
    > ZIP (or RAR) the data and transfer it to the server via FTP. Is there a
    > more efficient way to transfer data? Does FTP go as fast as the pipe
    > allows? (btw, the transferred data is binary, not text).
    >
    > Thanks.[/color]


    Comment

    Working...