View Single Post
Old 11-22-2009, 10:54 PM  
cyco_cc
Confirmed User
 
cyco_cc's Avatar
 
Join Date: Oct 2008
Posts: 344
Quote:
Originally Posted by $5 submissions View Post
Does this exist? An app that FTPs 1 file to several places at once...

If so, post the dl link here. This sequential upload is getting on my nerves
Not sure of an FTP app that does that. But it's relatively simple to get done custom, even if it's not asynchronous (e.g. FTP to first location, then the next, etc.). Suppose you have a method called ftpPut(FTPCredentials creds, string localFile) and an array of FTPCredentials, ftpCreds. Then it's just:

string localFile = "someFile.zip";
for(int i=0; i < ftpCreds.Length; i++) ftpPut(ftpCreds[i], localFile);


Should take a competent developer 15 minutes to do...
cyco_cc is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote