I am trying to connect to SFTP server to download some files. The code is written in C# and I am using FluentFTP to connect to the FTP. Client has given port as 22. But when I try the following code, I am getting the error
The handshake failed…
I'm creating a backup program that backs data up to FTP. To archive effectively, I need to do several file attribute comparisons. Right now, I am using FluentFTP and calling FtpClient.FileExists FtpClient.GetFileSize, and FtpClient.GetModifiedTime…
When I try to connect to my FTP server to upload a file with FluentFTP I get this:
The remote certificate is invalid according to the validation procedure.
Yet FileZilla works fine with no error or warnings.
Am I doing something wrong and if it's…
I am implementing FluentFTP in my application but I cannot list the contents of a folder on the FTP server.
When I use an ftp application like FileZilla I can clearly see that in my user directory there are 2 folders :
The Out folder contains…
I use FluentFTP in my code to transfer data internally to a FTP server. If the connection to the FTP server breaks down during the upload, then there is no exception.
But oddly enough, that doesn't happen with all dates! If I take a *.7z file, there…
I want to list out all the folder names and sizes in / path
In my case I have two folders in `/ path
XYZ (12MB)
ABC (10MB)
I want to get names and sizes using FluentFTP to achieve it with blazor.
I am using BabyFTP as a test FTP server.
what I…
I am using a C# console app to repro the issue. It's a .NET Framework 4.7 app. The FluentFTP version is 24.0.0, installed as a Nuget package.
This is my code:
using FluentFTP;
using System;
using System.Collections.Generic;
using System.Linq;
using…
I am using latest FluentFTP and I am trying to implement a Parallel Upload function.
The issue is that some connections throw exception with message "Could not create socket" and I don't see any specific pattern on the files that are…
This block of code is intended to open a connection between local machine and an FTP server. The server is hosted by DreamHost and I don't know if the issue is in my configuration for the target DreamHost's server. The code throws WebException:
530…
So far I have tried this
FtpWebRequest request = (FtpWebRequest)WebRequest.Create(url);
request.ServicePoint.BindIPEndPointDelegate = delegate
{
IPAddress ip = IPAddress.Parse("127.0.0.1");
return new IPEndPoint(ip, 0);
};
request.Method =…
I am having some issues when trying to hit ftp many times. For example we have hundred files in ftp and I try to download one with each request/endpoint hit. After random connections number, log shows that for some time we no longer can log in to…
I have seen similar questions in the past but not directly related to FluentFtp NuGet package.
How can I keep the last modified date from the sender to the receiver when I am uploading a single file?
Looks like the default is not to preserve it, is…
I'm using FluentFTP for connecting, downloading, etc. from FTP
https://github.com/robinrodricks/FluentFTP/wiki
I would like to download files simultaneously from List. There is no problem downloading them one by one.
This is how my code looks…
I use the fluentftp library to upload a folder to ftp.
How i can skip the subfolders of the directory.
// upload only PDF files
var rules = new List{
new FtpFileExtensionRule(true, new List{…
A while I back, I created an app which utilized FluentFTP to list and download files from an FTP server. Within the past month, the app started timing out whenever performing any FTP action using the library. I examined the logs generated by…