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
It seems that there was a similar problem in #74 and it seems that the order of the IAccountDirectoryQuery registration is important. It has the be registered after the AddFtpServer, because it'll be "overwritten" if you register it before the AddFtpServer.
Hello, i have the following issue, i think that it was mentioned (but denied) in this case .
services.Configure<DotNetFileSystemOptions>(opt => { opt.RootPath = @"c:\anonymous"; }); ... public IAccountDirectories GetDirectories(IAccountInformation accountInformation) { return new GenericAccountDirectories(rootPath: "c:\mypath"); }
Read/Write operations are performed on c:\anonymous\mypath\
Expected: c:\mypath
The text was updated successfully, but these errors were encountered: