Read CSV file without needing to save it

Asked

Viewed 1,952 times

4

I have following code:

        [HttpPost]
        public ActionResult importCSV(HttpPostedFileBase file)
        {
            if (file.ContentLength <= 0)
            {
                ViewBag.Message = "Nenhum arquivo foi enviado.";
                return View("index");
            }

                try
                {
                    string arquivo = Path.Combine(Server.MapPath("/ArquivosImportados"), Path.GetFileName(file.FileName));

                    string tipo = Path.GetExtension(arquivo);

                    if (tipo == ".csv")
                    {
                        file.SaveAs(arquivo);
                        ViewBag.Message = "Sucesso ao enviar arquivo! " + tipo;
                    }
                    else
                    {
                        ViewBag.Message = "O arquivo enviado não foi reconhecido com .csv válido!";
                    }

                }
                catch (Exception ex)
                {
                    ViewBag.Message = "ERRO: " + ex.Message.ToString();
                }

            return View("index");
        }

Is it possible to read the CSV file without having to save it? How can I read it?

1 answer

3


You’ve tried it before:

StreamReader csvreader = new StreamReader(file.InputStream);

while (!csvreader.EndOfStream)
{
    var linha = csvreader.ReadLine();
    var valores = linha.Split(';');

    // o que você precisa fazer aqui
}

Browser other questions tagged

You are not signed in. Login or sign up in order to post.