elFinder 是一个基于 Web 的文件管理器,灵感来自 Mac OS X 的 Finder 程序。
elFinder.Net是.Net版本的一个Demo,使用ASP.NET MVC 4集成,可以方便的使用Web管理本地文件。
GitHub地址:https://github.com/leniel/elFinder.Net
不过目前的elFinder.Net只支持管理本地文件夹,但是我需要的是管理FTP上的文件功能,在搜索一番无果后,就决定自己扩展了一下功能,让elFinder.Net也可以用来管理FTP文件。
不过自己改造的这个支持FTP的版本本来只是为满足个人需要,所以做得有些简陋,现在在这边分享一下,仅供参考:下载。
调用方式与原来的管理本地文件类似:
var ftpAction = new FtpAction("FTP地址", "FTP账号", "FTP密码");
FtpFileInfo _RootFtpFileInfo = ftpAction.GetListDirectory(string.Empty).Where(p => p.Name == "FTP*文件夹").First(); FTPFileSystemDriver driver = new FTPFileSystemDriver(); var root = new FTPRoot(_RootFtpFileInfo,
"http://" + Request.Url.Authority + "/Files/" + folder)
{
Url = "../File/OpenFile?Path=",
IsReadOnly = false, // Can be readonly according to user's membership permission
Alias = "文件服务器", // Beautiful name given to the root/home folder
MaxUploadSizeInMb = , // Limit imposed to user uploaded file
LockedFolders = new List<string>(new string[] { "Folder1" }),
FTPServerIP = "FTP地址",
FTPUser = "FTP账号",
FTPPassword = "FTP密码"
};
driver.AddRoot(root);
var connector = new Connector(driver); return connector.Process(this.HttpContext.Request);