JLRodgers Level: Moderator
 Registered: 04-04-2002 Posts: 1617
|
Re: how to upload multiple files simultaneously from one machine to another machine??
If the machines are on the same network, it'd be a lot easier to use the CopyFile or CopyFileEX (NT only) API.
Otherwise you'd be using multiple ports and a winsock control (or API). And the speed would be decreased based on how large and many files there are being transfered. And you'd have to decipher the data being sent, and you'd lose (unless you trap for) any NTFS permissions.
|