The project is an MVC 4 C# based web application.
I'm currently working locally and would like to have the ability to upload a file to my locally running application in debug mode and have the file saved to the web server instead of the my local folder.
Currently we are using:
if (!System.IO.File.Exists(Server.MapPath(PicturePath)))
{
file.SaveAs(Server.MapPath(PicturePath));
}
How can we leverage this code to save to a webserver directly. Is that even possible?
Right now the file gets saved to my local path and the path is stored in the database, we then have to upload the files to the webserver manually.