Getting
Timed out trying to read data from the socket stream!
when connecting to FTP using FluentFTP.
Below is the sourc
The following code is all you need to get FluentFtp (at least nuget (1.0.5824.34026) to use secure connection .
FtpClient fclient = new FtpClient(hostname, username, password); // or set Host & Credentials
fclient.EncryptionMode = FtpEncryptionMode.Implicit;
fclient.SslProtocols = SslProtocols.Tls12;
//client.Port = 990; // Not required - probably gives you exceptions if you try to set it.
fclient.Connect();
fclient.UploadFile(@"C:\tmp\a.txt", "big.txt");