I'm having an issue with the UploadFiles method of the FluentFTP library. This is my code:
var count = _client.UploadFiles(filesPaths, remotePath, true, true);
foreach(var path in filesPaths)
{
AddLog(string.Format("Uploaded File: {0}",…
I need to apply encryption mode in FluentFTP's ftp.
The syntax "EncryptionMode" don't exist in .net 6.
var conn = new FtpClient();
conn.EncryptionMode = FtpEncryptionMode.Explicit;
How should I apply EncryptionMode in FluentFTP's ftp in…