Asp.Net Core 2.1-不使用IFormFile上传文件

时间:2018-10-09 14:02:21

标签: asp.net-mvc asp.net-core-mvc

我正在将解决方案从.NET Framework MVC迁移到ASP.NET Core MVC。我需要在不使用模型绑定和IFormFile接口的情况下上传文件。

我在Google中搜索,但似乎无法做到这一点。

我尝试转换的代码如下

var file = Request.Files[key];

if (file == null)
     return null;

Stream inputStream = file.InputStream;
string contentType = file.ContentType;
string filename = file.FileName;

0 个答案:

没有答案