I could indeed sync a single file with this, but it took really long.
When I upload the file (1kB test file) it takes a second or so, but the synchronizing takes minutes.
Here is the code I used to check. I know I'm ignoring the parameters, but that's just for testing's sake.
The commented line is the line I used for plain uploading the file.
What am I doing wrong here?
private void Synchronize(string from, string to, string fileName) {
Connect();
FTPSyncRules syncRules = new FTPSyncRules();
syncRules.FileNameFilter = "MLStruct.xml";
// myConn.UploadFile(@"E:\Temp\syncTest\MLStruct.xml", @"/sdsTds/MLStruct.xml");
myConn.Synchronize(@"E:\Temp\syncTest\", @"/sdsTds/", syncRules);
}