System.IO.FileNotFoundException:找不到文件

时间:2018-05-22 12:43:59

标签: c# asp.net-core filestream

我正在使用文件上传控件。但是当我尝试阅读上传的文件时,它正在寻找创建项目并给出错误的文件夹。 这个代码

 <input type="file" name="file" />
 <button type="submit">Upload File</button>

[HttpPost]
    public IActionResult UploadFile(IFormFile file)
    {
        string FileName = file.FileName;
        if (file != null && file.Length != 0)
        {
            FileStream fileStream = new FileStream(FileName, FileMode.Open);
            using (StreamReader streamReader = new StreamReader(fileStream))
            {
                string line = streamReader.ReadLine();
            }

        }
    }

2 个答案:

答案 0 :(得分:0)

在表单操作中使用enctype = "multipart/form-data"。你可以使用剃须刀@using (Html.BeginForm())

@using (Html.BeginForm("UploadFile", "YourController", FormMethod.Post, new { enctype = "multipart/form-data" }))
{
    <input type="file" name="file" />
    <button type="submit">Submit</button>
}

源代码视图示例here

在控制器内部,你可以使用这样的方法控制器:

public async Task<IActionResult> UploadFile(IFormFile file)
{
    var uploadPath = Path.Combine(hostingEnv.WebRootPath, "uploadsfolder");

    using (var fileStream = new FileStream(Path.Combine(uploadPath, file.FileName), FileMode.Create))
    {
        await file.CopyToAsync(fileStream);
    }
    return RedirectToAction("Index");
 }

源代码控制器示例here

这应该可以正常使用

答案 1 :(得分:0)

如果您尝试使用流阅读上传的文件,可以使用以下内容

        string result;
        if (file != null && file.Length != 0)
        {
            using (var reader = new StreamReader(file.OpenReadStream()))
            {
               result = reader.ReadToEnd();  
            }
        }

或者,如果您尝试将上传的文件保存在服务器中的某个位置,那么您应该使用CopyTo方法,如下例所示,

        var destinationPath= Path.GetTempFileName(); //Change this line to point to your actual destination
        using (var stream = new FileStream(destinationPath, FileMode.Create))
        {
            await formFile.CopyToAsync(stream);
        }