Robin Rodricks
Robin Rodricks
This seems to be an extension to the FTPS/SSL protocol that we have not implemented. I cannot say more without further debugging.
Possibly could be fixed by setting `conn.SslProtocols = SslProtocols.Default | SslProtocols.Tls11 | SslProtocols.Tls12` as default in .NET 4.6 and higher. Related to #356
Firstly, when any command fails it will throw an FtpException and the details will be in that object . About logs, example code is there in the examples folder for...
https://github.com/robinrodricks/FluentFTP/wiki/Logging On Thu, Aug 19, 2021, 8:54 AM Robin Rodricks ***@***.***> wrote: > Firstly, when any command fails it will throw an FtpException and the > details will be in...
@MihaIvan this is the index - https://github.com/robinrodricks/FluentFTP/wiki There is also [API-wise index](https://github.com/robinrodricks/FluentFTP/wiki/API) but may not be 100% up to date. I get your use case, let me see what I...
@MihaIvan Did you check the `InfoMessages` property of the `LastReply` object? It should have the response lines...
If its not in InfoMessages it could be because your server is sending those responses on the data transfer connection.
Excellent find. We will check out the failing code and let you know. On Thu, Aug 26, 2021, 4:32 PM HeinziAT ***@***.***> wrote: > *FTP OS:* unknown > > *FTP...
Any reason you are calling `client.FileExists` on your end? `UploadFile` does that internally already...
With all methods, providing a relative path (path that does NOT start with `\`) will assume it works in the current directory. Relative paths are entirely subject to your FTP...