|
Hi I would like to send a file through socket to an other computer; An example of that code is below
while(totalsent<fileLengh) {
,//splitting the file in to smaller bits and sending and have it assembeled again once it has reached the reciever socket.send(splitted file) }
how can I achieve this ,any ideas
|