FtpServer icon indicating copy to clipboard operation
FtpServer copied to clipboard

Portable FTP server written in .NET

Results 47 FtpServer issues
Sort by recently updated
recently updated
newest added

I am having troubles connecting to local docker container using PASV. However, this works fine using EPSV. Outside of the docker container everything works great! I will add my config...

I am using this project in a way that needs to allow for modification of the IP, port, and authentication without stopping the application and I am needing to avoid...

I am using Windows 11. I have confirmed the certificate is correct by installing it and using it in a FTP site configured in IIS on my machine (disabled before...

Azure build pipeline fails so new releases never get published. The latest warning is "An image label with the label Ubuntu16 does not exist", probably related to this https://github.com/actions/virtual-environments/issues/4302

In [FtpConnection.ReadFromStreamAsync](https://github.com/FubarDevelopment/FtpServer/blob/ee1ba0897bad8727b6cb2d26f21f89e2ff9da351/src/FubarDev.FtpServer/FtpConnection.cs#L936), `readTask` is started using the cancellation token passed into the method, but `tcs` is also created which has its result set when the cancellation token is cancelled: ```csharp...

Version 3.1.2 introduced a very impressive memory leak. Without changing anything in the code of my application, just returning to version 3.1.1, this behavior disappears. ![image](https://user-images.githubusercontent.com/11770654/157744591-c24dce59-34ec-4b45-8de4-6f8d821e0ca7.png)

In our project, I found remote camera use ftp client upload picture to server has several problem. The camera upload picture file used short connection, FtpServer class member "_connections" store...

Hi, I added support for Azure Blob Storages. A new Project under Filesystem can be found with the implementation for Azure Blob Storages. The TestApp is also modified in order...

I get the following error: ``` Failed to stop the client connection: The CancellationTokenSource has been disposed. System.ObjectDisposedException: The CancellationTokenSource has been disposed. at System.Threading.CancellationTokenSource.ThrowObjectDisposedException() at FubarDev.FtpServer.FtpConnection.ConnectionClosingNetworkStreamReader.OnCloseAsync(Exception exception, CancellationToken cancellationToken)...

Hello, i have the following issue, i think that it was mentioned (but denied) [in this case ](https://github.com/FubarDevelopment/FtpServer/issues/74#issuecomment-511768777). ` services.Configure(opt => { opt.RootPath = @"c:\anonymous"; }); ... public IAccountDirectories GetDirectories(IAccountInformation...

bug