I have made a winform application that program is ftpClient using FluentFtp.dll(c# library).
My question is "Could I make web ftpClient".
I don't know well blazor.net.
but I heard that tech is able to make frontend using c#.
I have tried my ftpClient code move to @code{} block.
private void GetListFTP()
{
FluentFTP.FtpClient ftpClient = new FluentFTP.FtpClient("server host","server port(integer)","my id","my password");
IList<FluentFTP.FtpListItem> items = ftpClient.GetListing("/", FluentFTP.FtpListOption.ForceList);
IList<string> listStr = items.Select(itm => itm.Input).ToList();
}
but that code just work on Server(not Browser!).
If it isn't available, please recommand me javascript ftp libary.