Nancy httpfile issue
本文关键字:issue httpfile Nancy | 更新日期: 2023-09-27 18:10:23
我在解析请求文件时遇到问题。我的文件大小是1338521字节,但南希说,文件大小有时是1751049或3200349倍。在我的Windows电脑上工作正常,在Linux服务器上出现这个问题,所以我无法保存文件。
string result = Convert.ToBase64String(Core.ReadBytesFromStream(file.Value));
using (MemoryStream ms = new MemoryStream(Convert.FromBase64String(result)))
{
using (Bitmap bm2 = new Bitmap(ms))
{
bm2.Save(path);
}
}
任何想法?
您不需要这样转换文件。
var filename = Path.Combine(storagePath, Request.Files[0].Name);
using (var fileStream = new FileStream(filename, FileMode.Create))
{
Request.Files[0].Value.CopyTo(fileStream);
}
在文件进入时验证文件以确保扩展名被接受,创建保存路径,并将流复制到文件系统上的新文件。
。