コード例 #1
0
        //
        // GET: /FileManage/

        public ActionResult FileManage(string path)
        {
            ViewBag.Path = path;
            List <FileShowModel> list = FileOperate.GetFoldAllModel(HttpUtility.UrlDecode(path));

            return(View(list));
        }