Quote:
Originally Posted by $5 submissions
|
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...