欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

ASP.NET MVC實現(xiàn)文件下載

 更新時間:2022年07月31日 10:24:08   作者:Darren Ji  
這篇文章介紹了ASP.NET MVC實現(xiàn)文件下載的方法,文中通過示例代碼介紹的非常詳細(xì)。對大家的學(xué)習(xí)或工作具有一定的參考借鑒價值,需要的朋友可以參考下

思路

點擊一個鏈接,把該文件的Id傳遞給控制器方法,遍歷文件夾所有文件,根據(jù)ID找到對應(yīng)文件,并返回FileResult類型。

與文件相關(guān)的Model:

namespace MvcApplication1.Models
{
    public class FileForDownload
    {
        public int Id { get; set; }
        public string Name { get; set; }
        public string Path { get; set; }
    }
}

文件幫助類

寫一個針對文件的幫助類,遍歷指定文件夾的所有文件,返回FileForDownload集合類型。在項目根目錄下創(chuàng)建Files文件夾,存放下載文件。

using System.Collections.Generic;
using System.IO;
using System.Web.Hosting;
using MvcApplication1.Models;

namespace MvcApplication1.Helper
{
    public class FileHelper
    {
        public List<FileForDownload> GetFiles()
        {
            List<FileForDownload> result = new List<FileForDownload>();
            DirectoryInfo dirInfo = new DirectoryInfo(HostingEnvironment.MapPath("~/Files"));

            int i = 0;
            foreach (var item in dirInfo.GetFiles())
            {
                result.Add(new FileForDownload()
                {
                    Id = i + 1,
                    Name = item.Name,
                    Path = dirInfo.FullName + @"\" + item.Name
                });
                i++;
            }
            return result;
        }
    }
}

HomeController中:

using System;
using System.Linq;
using System.Web.Mvc;
using MvcApplication1.Helper;

namespace MvcApplication1.Controllers
{
    public class HomeController : Controller
    {
        private FileHelper helper;

        public HomeController()
        {
            helper = new FileHelper();
        }

        public ActionResult Index()
        {
            var files = helper.GetFiles();
            return View(files);
        }

        public FileResult DownloadFile(string id)
        {
            var fId = Convert.ToInt32(id);
            var files = helper.GetFiles();
            string fileName = (from f in files
                where f.Id == fId
                select f.Path).FirstOrDefault();
            string contentType = "application/pdf";
            return File(fileName, contentType, "Report.pdf");
        }
    }
}

Home/Index.cshtml中:

@model IEnumerable<MvcApplication1.Models.FileForDownload>

@{
    ViewBag.Title = "Index";
    Layout = "~/Views/Shared/_Layout.cshtml";
}

<table>
    @foreach (var item in Model)
    {
        <tr>
            <td>
                @Html.DisplayFor(modelItem => item.Id)
            </td>
            <td>
                @Html.DisplayFor(modelItem => item.Name)
            </td>
            <td>
                @Html.ActionLink("下載", "DownloadFile", new { id = item.Id })
            </td>
        </tr>
        
    }
</table>

到此這篇關(guān)于ASP.NET MVC實現(xiàn)文件下載的文章就介紹到這了。希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。

相關(guān)文章

最新評論