docs/en/modules/virtual-file-explorer.md
//[doc-seo]
{
"Description": "Discover how to install and use the Virtual File Explorer Module in your ABP Framework application to easily manage files in a virtual file system."
}
Virtual File Explorer Module provided a simple UI to view all files in virtual file system.
Virtual File Explorer Module is not installed for the startup templates. So, you need to manually add this module to your application.
It is recommended to use the ABP CLI to install the module, open the CMD window in the solution file (.sln) directory, and run the following command:
abp add-module Volo.VirtualFileExplorer
If you haven't done it yet, you first need to install the ABP CLI. For other installation options, see the package description page.
Or you can also manually install nuget package to Acme.MyProject.Web project:
Install Volo.Abp.VirtualFileExplorer.Web nuget package to Acme.MyProject.Web project.
dotnet add package Volo.Abp.VirtualFileExplorer.Web
MyProjectWebModule.csand add typeof(AbpVirtualFileExplorerWebModule) as shown below; [DependsOn(
typeof(AbpVirtualFileExplorerWebModule),
typeof(MyProjectApplicationModule),
typeof(MyProjectEntityFrameworkCoreModule),
typeof(AbpAutofacModule),
typeof(AbpIdentityWebModule),
typeof(AbpAccountWebModule),
typeof(AbpAspNetCoreMvcUiBasicThemeModule)
)]
public class MyProjectWebModule : AbpModule
{
//...
}
package.json and add @abp/virtual-file-explorer": "^2.9.0 as shown below: {
"version": "1.0.0",
"name": "my-app",
"private": true,
"dependencies": {
"@abp/aspnetcore.mvc.ui.theme.basic": "^2.9.0",
"@abp/virtual-file-explorer": "^2.9.0"
}
}
Then open the command line terminal in the Acme.MyProject.Web project folder and run the following command:
abp install-libs
That's all,Now run the application and Navigate to /VirtualFileExplorer. You will see virtual file explorer page:
You can disabled virtual file explorer module via AbpVirtualFileExplorerOptions options:
public override void PreConfigureServices(ServiceConfigurationContext context)
{
PreConfigure<AbpVirtualFileExplorerOptions>(options =>
{
options.IsEnabled = false;
});
}