ComponentOne
Web API Explorer ASP.NET Web API Explorer
FileManager

Overview

Overview

Manage your files efficiently with File Manager.

Features

Description

File Manager helps you handle all your files whether they are stored in your local server or cloud storage accounts. By default, File Manager allows you to list, move, download, upload, delete files.
using Microsoft.AspNetCore.Mvc;

namespace WebApiExplorer.Controllers
{
    public partial class FileManagerController : Controller
    {
        public IActionResult Index()
        {
            return View();
        }
    }
}
@using Microsoft.Extensions.Configuration
@inject IConfiguration Configuration

@section Styles{
    <style>
        .popover {
            display: block;
        }
    </style>
}

<c1-file-manager id="FileManager" host-url="@Configuration["WebAPIService"]" root-folder="test1" cloud-type="DropBox">
</c1-file-manager>

@section Summary{
    <p>@Html.Raw(FileManager.Index_Text1)</p>
}

@section Description{
    @Html.Raw(FileManager.Index_Text0)
}