elfinder.Net8
8.0.7
See the version list below for details.
dotnet add package elfinder.Net8 --version 8.0.7
NuGet\Install-Package elfinder.Net8 -Version 8.0.7
<PackageReference Include="elfinder.Net8" Version="8.0.7" />
paket add elfinder.Net8 --version 8.0.7
#r "nuget: elfinder.Net8, 8.0.7"
// Install elfinder.Net8 as a Cake Addin #addin nuget:?package=elfinder.Net8&version=8.0.7 // Install elfinder.Net8 as a Cake Tool #tool nuget:?package=elfinder.Net8&version=8.0.7
elFinder.Net8
<img src="https://github.com/mulgaBrian/elFinder.Net8/raw/main/Assets/logo.png" alt="Logo" width="100px" />
Getting Started
- Install the NuGet package: https://www.nuget.org/packages/elFinder.Net8/
- Look at the basic demo project for an example of how to integrate it into your web project. (the example uses ASP.NET .Net 8 and some additional packages listed below).
Advanced
The advanced demo project has some additional use cases enabled, including:
- Integrate Authentication/Authorization (Cookies, OAuth2 JWT).
- Multi-tenant support.
- Events.
- Some customized behaviors can be done outside the core library.
- Integrate Quota management plugin.
- For an example of how to write a plugin, see Logging plugin example.
This plugin intercepts all method calls of
IConnector
andIDriver
instances then logs the method's information (arguments, method name, return value, .etc) to the console output.
Customization
Since file management is a complex topic and the requirements are diverse, here are some ways to customize the library:
- Override the default implementation
- Use interceptors (as those plugins here which use Castle DynamicProxy and built-in .NET Core DI container).
Some important classes and their descriptions:
IConnector/Connector
: the backend connector which handles elFinder commands sent from clients.IDriver/FileSystemDriver
: the driver which provides a storage mechanism (in this case, the OS file system). There are other drivers for different storage, e.g, elFinder AzureStorage.IFile/FileSystemFile; IDirectory/FileSystemDirectory
: the file system's abstractions/implementations.- Others: please download the repository, then run the demo projects. They should walk through all of the important classes.
About this repository
There are 3 main projects:
- elFinder.Net.Core: the core backend connector for elFinder.
- elFinder.Net.AspNetCore: enable ASP.NET Core 2.2 projects to easily integrate the connector package.
- elFinder.Net.Drivers.FileSystem: the default Local File System driver.
Plugins:
- Plugins/elFinder.Net.Plugins.FileSystemQuotaManagement: enable quota management and restriction features.
Credits
elFinder.Net8 is based on the project elFinder.Net.Core of trannamtrung1st. Many thanks for the excellent works. For those who may get confused about which package to use, try and find the one that best suits your project. I create this with some modification that suits my use cases. Some of the main differences are:
- Remove .NET Standard 2.0 and use ASP.NET .Net 8.
- Add Video thumbnails using ImageSharp.AVCodecFormats ImageSharp.AVCodecFormats
- Follow the specification from https://github.com/Studio-42/elFinder/wiki more strictly.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
-
net8.0
- ImageSharp.AVCodecFormats (>= 4.6.0)
- ImageSharp.AVCodecFormats.Native (>= 2.0.0)
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 8.0.1)
- Microsoft.Extensions.Options (>= 8.0.2)
- Microsoft.Extensions.Primitives (>= 8.0.0)
- MimeTypeMapOfficial (>= 1.0.17)
- SixLabors.ImageSharp (>= 3.1.5)
NuGet packages (2)
Showing the top 2 NuGet packages that depend on elfinder.Net8:
Package | Downloads |
---|---|
elfinder.Net8.AspNet
This package enables ASP.NET .Net 8 projects to easily integrate the elFinder.Net.Core connector. See the example project on Github for usage detail. |
|
elFinder.Net8.Drivers.FileSystem
elFinder.Net8 Local File System driver. |
GitHub repositories
This package is not used by any popular GitHub repositories.