Features

LocalStorage

LocalStorage

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 System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Mvc;

namespace CloudFileExplorer.Controllers.FileManager
{
    public class FileManagerController : Controller
    {
        public IActionResult LocalStorage()
        {
            return View();
        }
    }
}
@section Styles{
    <style>
        .popover {
            display: block;
        }
    </style>
}

<c1-file-manager id="FileManager" host-url="@Url.Content("~")" root-folder="ExcelRoot/LocalDocuments" cloud-type="LocalStorage">
</c1-file-manager>

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

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