Hi,
My code below for testing ftp connection
using (Ftp ftp = new Ftp())
{
ftp.Progress += Ftp_Progress;
string add = txtaddS1.Text;
string user = txtuserS1.Text;
string pass = txtpassS1.Text;
ftp.Connect(add);
ftp.Login(user, pass);
ftp.Upload(@"testconnection.txt", @"testconnection.txt");
ftp.Close();
}
With my direct ftp address: xx.xxx.xxx.xx it worked
But with subfolder xx.xxx.xxx.xx/yy it did not work
Please advise