Questions tagged [fluentftp]

For questions about the FluentFTP library for .NET.

GitHub repo: https://github.com/robinrodricks/FluentFTP

62 questions
0
votes
1 answer

"Can't find file" error when calling UploadFiles

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}",…
-1
votes
1 answer

Any EncryptionMode in FluentFTP?

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…
HelloWorld1
  • 13,688
  • 28
  • 82
  • 145
1 2 3 4
5