我正在将解决方案从.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;