首页 > 编程语言 >ASP.NET Core 文件上传

ASP.NET Core 文件上传

时间:2023-03-09 22:46:31浏览次数:45  
标签:Core ASP stream 文件 FileStream image NET 上传

以下是将上传的图片保存在本地的示例代码:

1、在前端,使用HTML表单元素和POST方法将文件上传到后端:

<form method="post" enctype="multipart/form-data" action="/upload">
    <input type="file" name="image" />
    <button type="submit">Upload</button>
</form>

2、在后端,使用IFormFile接口和FileStream类将上传的文件保存到本地磁盘上:

[HttpPost("upload")]
public async Task<IActionResult> Upload(IFormFile image)
{
    if (image == null || image.Length == 0)
    {
        return BadRequest("Invalid file");
    }

    var filePath = Path.Combine(Path.GetTempPath(), image.FileName);
    using (var stream = new FileStream(filePath, FileMode.Create))
    {
        await image.CopyToAsync(stream);
    }

    return Ok();
}

 

标签:Core,ASP,stream,文件,FileStream,image,NET,上传
From: https://www.cnblogs.com/duhaoran/p/17201753.html

相关文章

  • DOTNET CORE DATETIME在LINUX与WINDOWS时间不一致
    .netcore项目,部署到CentOS上的时候,发现DateTime.Now获取的时间与Windows不一致,主要是时区不一致。staticvoidMain(string[]args){Console.WriteLine(DateTime.......
  • AspNet Core: Jwt身份认证
    目录AspNetCore:Jwt身份认证资源服务器创建项目依赖包添加APIProgram认证服务器创建项目依赖包AspNetCore:Jwt身份认证资源服务器创建项目新建一个“AspNetCoreWe......
  • .netcore 静态文件地址访问
    首先在StartUp.cs文件里面注册管道如:需要在网站里面的files的文件对外访问app.UseStaticFiles();app.UseFileServer(newFileServerOptions{......
  • 【翻译】发布 .NET 8 Preview 1
    本文使用OpenAIgpt-3.5-turbo-0301模型翻译生成欢迎使用.NET8!第一个预览版已经发布,您可以获取第一个.NET8预览版并开始构建应用程序。请往下滑动以查看此预览版......
  • WPF Validation - Using INotifyDataErrorInfo | .NET Land (kmatyaszek.github.io)
    WPFValidation-UsingINotifyDataErrorInfo|.NETLand(kmatyaszek.github.io)Inthe.NET4.5wasintroducednewinterface INotifyDataErrorInfo whichenable......
  • kubernetes-dashboard安装使用
    环境:系统:CentOSLinuxrelease7.6.1810(Core)kubernetes版本:v1.23.5dashboardv2.7.0github地址:​​https://github.com/kubernetes/dashboard/releases​​安装说明上面由......
  • ASP.NET Core Web API 接口限流
    前言ASP.NETCoreWebAPI接口限流、限制接口并发数量,我也不知道自己写的有没有问题,抛砖引玉、欢迎来喷!需求写了一个接口,参数可以传多个人员,也可以传单个人员,时间范围......
  • Jenkins使用 web Deploy 发布 .Net Core
    0.MSDeploy安装MSDeploy下载地址deploy默认监听80端口,当80端口被其他应用占用时,服务将会开启失败!所以需要使用微软自带的命令行安装工具:msiexec进行手动指定安......
  • asp.net core 3.1 模拟数据库,假数据步骤
         1.Model usingSystem;usingSystem.Collections.Generic;usingSystem.Linq;usingSystem.Threading.Tasks;namespaceWebgentle.BookStore.......
  • linux运行 netcore,linux 下netcore程序开机自动启动服务
    [Unit]Description=aixiezuo守护进程[Service]WorkingDirectory=/www/wwwroot/fuwu/linux-x64ExecStart=/usr/bin/dotnet/www/wwwroot/fuwu/linux-x64/AIXieZuoNetC......