You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fluent FtpClient has default settings.
It can connect to ftp://test.rebex.net:21 or ftp://test.rebex.net:990 (use Task FtpClient.ConnectAsync()).
When type wrong port like 22, 143 (I think the port should be open but not ftp) the task never ends.
p.s. I can't write logs, because I don't know how to include it in UWP
The text was updated successfully, but these errors were encountered:
nuget FluentFTP v19.1.2
I added FtpTrace.LogToFile = "log_file.txt";
and got exception System.UnauthorizedAccessException: 'Access to the path 'C:\Development\FtpTest\bin\x64\Debug\AppX\log_file.txt' is denied.' on line await _client.ConnectAsync();
UWP can access to file system using StorageFile class.
Can you add custom log?
FtpTrace.CustomLog = (log) => { Debug.WriteLine(log); }
FTP OS: (ftp://test.rebex.net)
FTP Server: (ftp://test.rebex.net)
Computer OS: Win10
App: UWP
Fluent FtpClient has default settings.
It can connect to ftp://test.rebex.net:21 or ftp://test.rebex.net:990 (use Task FtpClient.ConnectAsync()).
When type wrong port like 22, 143 (I think the port should be open but not ftp) the task never ends.
p.s. I can't write logs, because I don't know how to include it in UWP
The text was updated successfully, but these errors were encountered: