Version
Google Translate

Virtual File Explorer Module

What is Virtual File Explorer Module?

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.

Installation

1- Use VCP CLI

It is recommended to use the VCP CLI to install the module, open the CMD window in the solution file (.sln) directory, and run the following command:

vcp add-module Verto.VirtualFileExplorer

If you haven't done it yet, you first need to install the VCP CLI. For other installation options, see the package description page.

2- Manually install

Or you can also manually install nuget package to Acme.MyProject.Web project:

2.1- Adding Module Dependencies
  • Open MyProjectWebModule.csand add typeof(VcpVirtualFileExplorerWebModule) as shown below;
   [DependsOn(
        typeof(VcpVirtualFileExplorerWebModule),
        typeof(MyProjectApplicationModule),
        typeof(MyProjectEntityFrameworkCoreModule),
        typeof(VcpAutofacModule),
        typeof(VcpIdentityWebModule),
        typeof(VcpAccountWebModule),
        typeof(VcpAspNetCoreMvcUiBasicThemeModule)
    )]
    public class MyProjectWebModule : VcpModule
    {
        //...
    }
2.2- Adding NPM Package
  • Open package.json and add @vcp/virtual-file-explorer": "^2.9.0 as shown below:
  {
      "version": "1.0.0",
      "name": "my-app",
      "private": true,
      "dependencies": {
          "@vcp/aspnetcore.mvc.ui.theme.basic": "^2.9.0",
          "@vcp/virtual-file-explorer": "^2.9.0"
      }
  }

Then open the command line terminal in the Acme.MyProject.Web project folder and run the following command:

vcp install-libs

That's all,Now run the application and Navigate to /VirtualFileExplorer. You will see virtual file explorer page:

Virtual-File-Explorer

Options

You can disabled virtual file explorer module via VcpVirtualFileExplorerOptions options:

public override void PreConfigureServices(ServiceConfigurationContext context)
{
    PreConfigure<VcpVirtualFileExplorerOptions>(options =>
    {
        options.IsEnabled = false;
    });
}
In this document