Server.Mappath does not find the folder in my project

Asked

Viewed 45 times

-1

I am trying to save a file to a folder in my project (In case in Files folder):

inserir a descrição da imagem aqui

but gives the following error when entering the action:

inserir a descrição da imagem aqui

Controller Code:

[HttpPost]
        [ValidateAntiForgeryToken]
        public ActionResult Cadastrar(ArquivoPasta oArquivo,HttpPostedFileBase arquivo)
        {
            FileStream stream = new FileStream(Server.MapPath("Arquivos"+arquivo.FileName), FileMode.Create, FileAccess.Write);
            byte[] bytesLogotipo = new byte[arquivo.ContentLength];
            arquivo.InputStream.Read(bytesLogotipo, 0, arquivo.ContentLength);
            stream.Write(bytesLogotipo, 0, arquivo.ContentLength);
            ViewBag.Mensagem = "Arquivo Salvo com sucesso nessa merda!";
            return View();
        }

I created the folder in the wrong place or the code is wrong?

1 answer

2

Bar missing...

Server.MapPath("Arquivos\"+arquivo.FileName)

Browser other questions tagged

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