Ejemplo n.º 1
0
        public IActionResult GetFolderContent(string path, int skip)
        {
            string            FullPath    = _pathHelper.GetFullPathToFile(path);
            List <StoredFile> storedFiles = _fsService.GetAllFolderContent(FullPath, skip);

            return(Json(storedFiles));
        }