使用 FTP 传输文件
首先这不是一个寻求编程帮助的问题。我正在做一个使用 FTP 的项目,因为我采用了一种逻辑,我希望人们发表评论,该逻辑是否正确,或者我是否必须采用更好的逻辑。我使用 FTP 传输文件,例如,如果文件大小为 10 MB,我会根据我的网络速度将该文件拆分为“X”个“y”大小的文件,之后我将这些文件一一发送并将其合并到客户端机器。
我客户端的网络速度非常低(1kbps),所以我想将文件拆分为 512 字节大小并发送。
First of all this is not a question seeking Programming help. I am doing a project using FTP in that i employed a logic I want peoples to make comment whether the logic is ok or I have to employ a better one. I transfer files using FTP, for ex if the filesize is 10 MB I will split that file into "X" no of files of "y" size depending upon my network speed, after that I send these files one by one and merge it on the client machine.
the network speed in my client side is very low(1kbps) so I want to split files into size of 512 bytes and send it.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
最好不要拆分文件,而是使用都支持恢复文件传输的客户端和服务器。
It would be better not to split the file but use a client and server that both support resuming file transfers.