首頁 > 軟體

ASP.NET MVC實現檔案下載

2022-07-31 14:01:08

思路

點選一個連結,把該檔案的Id傳遞給控制器方法,遍歷資料夾所有檔案,根據ID找到對應檔案,並返回FileResult型別。

與檔案相關的Model:

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

檔案幫助類

寫一個針對檔案的幫助類,遍歷指定資料夾的所有檔案,返回FileForDownload集合型別。在專案根目錄下建立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>

到此這篇關於ASP.NET MVC實現檔案下載的文章就介紹到這了。希望對大家的學習有所幫助,也希望大家多多支援it145.com。


IT145.com E-mail:sddin#qq.com