日本免费高清视频-国产福利视频导航-黄色在线播放国产-天天操天天操天天操天天操|www.shdianci.com

學(xué)無先后,達(dá)者為師

網(wǎng)站首頁 編程語言 正文

ASP.NET?Core實(shí)現(xiàn)文件上傳和下載_實(shí)用技巧

作者:965201314.cn ? 更新時(shí)間: 2022-09-18 編程語言

本文實(shí)例為大家分享了ASP.NET Core實(shí)現(xiàn)文件上傳和下載的具體代碼,供大家參考,具體內(nèi)容如下

一、文件上傳

1.1 獲取文件后綴

/// <summary>
/// 獲取文件后綴
/// </summary>
/// <param name="fileName">文件名稱</param>
/// <returns></returns>
? ? ? ? public async static Task<string> GetFileSuffixAsync(string fileName)
? ? ? ? {
? ? ? ? ? ? return await Task.Run(() =>
? ? ? ? ? ? {
? ? ? ? ? ? ? ? string suffix = Path.GetExtension(fileName);
? ? ? ? ? ? ? ? return suffix;
? ? ? ? ? ? });
? ? ? ? }

1.2 上傳單文件

public class FileMessage
? ? {
? ? ? ? /// <summary>
? ? ? ? /// 原文件名稱
? ? ? ? /// </summary>
? ? ? ? public string FileName { get; set; }

? ? ? ? /// <summary>
? ? ? ? /// 附件名稱(協(xié)議或其他要進(jìn)行數(shù)據(jù)庫保存與模型綁定的命名)
? ? ? ? /// </summary>
? ? ? ? public string ArgumentName { get; set; }

? ? ? ? /// <summary>
? ? ? ? /// 文件大小(KB)
? ? ? ? /// </summary>
? ? ? ? public string FileSize { get; set; }

? ? ? ? /// <summary>
? ? ? ? /// -1:上傳失敗 0:等待上傳 1:已上傳
? ? ? ? /// </summary>
? ? ? ? public int FileStatus { get; set; }

? ? ? ? /// <summary>
? ? ? ? /// 上傳結(jié)果
? ? ? ? /// </summary>
? ? ? ? public string UploadResult { get; set; }

? ? ? ? /// <summary>
? ? ? ? /// 創(chuàng)建實(shí)例
? ? ? ? /// </summary>
? ? ? ? /// <param name="fileName">原文件名稱</param>
? ? ? ? /// <param name="argumentName">(新)附件名稱</param>
? ? ? ? /// <param name="fileSize">大小</param>
? ? ? ? /// <param name="fileStatus">文件狀態(tài)</param>
? ? ? ? /// <returns></returns>
? ? ? ? public static FileMessage CreateNew(string fileName,
? ? ? ? ? ? string argumentName,
? ? ? ? ? ? string fileSize,
? ? ? ? ? ? int fileStatus,
? ? ? ? ? ? string uploadResult)
? ? ? ? {
? ? ? ? ? ? return new FileMessage()
? ? ? ? ? ? {
? ? ? ? ? ? ? ? FileName = fileName,
? ? ? ? ? ? ? ? ArgumentName = argumentName,
? ? ? ? ? ? ? ? FileSize = fileSize,
? ? ? ? ? ? ? ? FileStatus = fileStatus,
? ? ? ? ? ? ? ? UploadResult = uploadResult
? ? ? ? ? ? };
? ? ? ? }
? ? }
/// <summary>
/// 上傳文件
?/// </summary>
?/// <param name="file">上傳的文件</param>
?/// <param name="fold">要存儲(chǔ)的文件夾</param>
?/// <returns></returns>
? ? ? ? public async static Task<FileMessage> UploadFileAsync(IFormFile file, string fold)
? ? ? ? {
? ? ? ? ? ? string fileName = file.FileName;
? ? ? ? ? ? string path = Directory.GetCurrentDirectory() + @"/Upload/" + fold + "/";
? ? ? ? ? ? if (!Directory.Exists(path))
? ? ? ? ? ? {
? ? ? ? ? ? ? ? Directory.CreateDirectory(path);
? ? ? ? ? ? }
? ? ? ? ? ? string argumentName = DateTime.Now.ToString("yyyyMMddHHmmssfff") + await GetFileSuffixAsync(file.FileName);
? ? ? ? ? ? string fileSize = Math.Round((decimal)file.Length / 1024, 2) + "k";
? ? ? ? ? ? string filePath = Path.Combine(path, argumentName);
? ? ? ? ? ? try
? ? ? ? ? ? {
? ? ? ? ? ? ? ? using (FileStream stream = new FileStream(filePath, FileMode.Create))
? ? ? ? ? ? ? ? {
? ? ? ? ? ? ? ? ? ? await file.CopyToAsync(stream);
? ? ? ? ? ? ? ? }
? ? ? ? ? ? ? ? return FileMessage.CreateNew(fileName, argumentName, fileSize, 1, "文件上傳成功");
? ? ? ? ? ? }
? ? ? ? ? ? catch (Exception e)
? ? ? ? ? ? {
? ? ? ? ? ? ? ? return FileMessage.CreateNew(fileName, argumentName, fileSize, -1, "文件上傳失敗:" + e.Message);
? ? ? ? ? ? }
? ? ? ? }

1.3 上傳多文件

/// <summary>
/// 上傳多文件
/// </summary>
/// <param name="files">上傳的文件集合</param>
/// <param name="fold">要存儲(chǔ)的文件夾</param>
/// <returns></returns>
? ? ? ? public async static Task<List<FileMessage>> UploadFilesAsync(IFormFileCollection files, string fold)
? ? ? ? {
? ? ? ? ? ? string path = Directory.GetCurrentDirectory() + @"/Upload/" + fold + "/";
? ? ? ? ? ? if (!Directory.Exists(path))
? ? ? ? ? ? {
? ? ? ? ? ? ? ? Directory.CreateDirectory(path);
? ? ? ? ? ? }
? ? ? ? ? ? List<FileMessage> messages = new List<FileMessage>();
? ? ? ? ? ? foreach (var file in files)
? ? ? ? ? ? {
? ? ? ? ? ? ? ? string fileName = file.FileName;
? ? ? ? ? ? ? ? string argumentName = DateTime.Now.ToString("yyyyMMddHHmmssfff") + await GetFileSuffixAsync(file.FileName);
? ? ? ? ? ? ? ? string fileSize = Math.Round((decimal)file.Length / 1024, 2) + "k";
? ? ? ? ? ? ? ? string filePath = Path.Combine(path, argumentName);
? ? ? ? ? ? ? ? try
? ? ? ? ? ? ? ? {
? ? ? ? ? ? ? ? ? ? using (FileStream stream = new FileStream(filePath, FileMode.Create))
? ? ? ? ? ? ? ? ? ? {
? ? ? ? ? ? ? ? ? ? ? ? await file.CopyToAsync(stream);
? ? ? ? ? ? ? ? ? ? }
? ? ? ? ? ? ? ? ? ? messages.Add(FileMessage.CreateNew(fileName, argumentName, fileSize, 1, "文件上傳成功"));
? ? ? ? ? ? ? ? }
? ? ? ? ? ? ? ? catch (Exception e)
? ? ? ? ? ? ? ? {
? ? ? ? ? ? ? ? ? ? messages.Add(FileMessage.CreateNew(fileName, argumentName, fileSize, -1, "文件上傳失敗,失敗原因:" + e.Message));
? ? ? ? ? ? ? ? }
? ? ? ? ? ? }
? ? ? ? ? ? return messages;
? ? ? ? }
[Route("api/[controller]")]
? ? [ApiController]
? ? public class ManageProtocolFileController : ControllerBase
? ? {
? ? ? ? private readonly string createName = "";
? ? ? ? private readonly IWebHostEnvironment _env;
? ? ? ? private readonly ILogger<ManageProtocolFileController> _logger;
? ? ? ? public ManageProtocolFileController(IWebHostEnvironment env,
? ? ? ? ? ? ILogger<ManageProtocolFileController> logger)
? ? ? ? {
? ? ? ? ? ? _env = env;
? ? ? ? ? ? _logger = logger;
? ? ? ? }
? ? ? ??
? ? ? ? /// <summary>
? ? ? ? /// 協(xié)議上傳附件
? ? ? ? /// </summary>
? ? ? ? /// <param name="file"></param>
? ? ? ? /// <returns></returns>
? ? ? ? [HttpPost("upload")]
? ? ? ? public async Task<FileMessage> UploadProtocolFile([FromForm] IFormFile file)
? ? ? ? {
? ? ? ? ? ? return await UploadFileAsync(file, "ManageProtocol");
? ? ? ? }
? ? }

二、文件下載

2.1 獲取ContentType屬性

/// <summary>
/// 獲取文件ContentType
/// </summary>
/// <param name="fileName">文件名稱</param>
?/// <returns></returns>
? ? ? ? public async static Task<string> GetFileContentTypeAsync(string fileName)
? ? ? ? {
? ? ? ? ? ? return await Task.Run(() =>
? ? ? ? ? ? {
? ? ? ? ? ? ? ? string suffix = Path.GetExtension(fileName);
? ? ? ? ? ? ? ? var provider = new FileExtensionContentTypeProvider();
? ? ? ? ? ? ? ? var contentType = provider.Mappings[suffix];
? ? ? ? ? ? ? ? return contentType;
? ? ? ? ? ? });
? ? ? ? }

2.2 執(zhí)行下載

[Route("api/[controller]")]
[ApiController]
? ? public class ManageProtocolFileController : ControllerBase
? ? {
? ? ? ? private readonly string createName = "";
? ? ? ? private readonly IWebHostEnvironment _env;
? ? ? ? private readonly ILogger<ManageProtocolFileController> _logger;
? ? ? ? public ManageProtocolFileController(IWebHostEnvironment env,
? ? ? ? ? ? ILogger<ManageProtocolFileController> logger)
? ? ? ? {
? ? ? ? ? ? _env = env;
? ? ? ? ? ? _logger = logger;
? ? ? ? }
? ? ? ??
? ? ? ? /// <summary>
? ? ? ? /// 下載附件
? ? ? ? /// </summary>
? ? ? ? /// <param name="fileName">文件名稱</param>
? ? ? ? /// <returns></returns>
? ? ? ? [HttpGet("download")]
? ? ? ? public async Task<FileStreamResult> Download([FromQuery] string fileName)
? ? ? ? {
? ? ? ? ? ? try
? ? ? ? ? ? {
? ? ? ? ? ? ? ? string rootPath = _env.ContentRootPath + @"/Upload/ManageProtocolFile";
? ? ? ? ? ? ? ? string filePath = Path.Combine(rootPath, fileName);
? ? ? ? ? ? ? ? var stream = System.IO.File.OpenRead(filePath);
? ? ? ? ? ? ? ? string contentType = await GetFileContentTypeAsync(fileName);
? ? ? ? ? ? ? ? _logger.LogInformation("用戶:" + createName + "下載后臺(tái)客戶協(xié)議附件:" + request.FileName);
? ? ? ? ? ? ? ? return File(stream, contentType, fileName);
? ? ? ? ? ? }
? ? ? ? ? ? catch (Exception e)
? ? ? ? ? ? {
? ? ? ? ? ? ? ? _logger.LogError(e, "用戶:" + createName + "下載后臺(tái)客戶協(xié)議附件出錯(cuò),出錯(cuò)原因:" + e.Message);
? ? ? ? ? ? ? ? throw new Exception(e.ToString());
? ? ? ? ? ? }
? ? ? ? }
}

原文鏈接:https://blog.csdn.net/qq_42799562/article/details/117958873

欄目分類
最近更新