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] - 24 Dec 2005 01:39 GMT
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.

Signature
- Nicholas Paldino [.NET/C# MVP]
- mvp@spam.guard.caspershouse.com
> Hello,
>
[quoted text clipped - 5 lines]
>
> Thanks.