I have some files that I need to upload to a shared folder on a remote file server, for example, to:
\\myServer\my\path
Only specific users are allowed to access to this shared folder. Files upload is done through user's browser via this ASP.NET MVC app and using a specific user and password which has permissions (total control) to access the shared folder in order to read/write/modify content.
I am using NET 4.5 and Visual Studio 2013.
How can I achieve this?
I have heard about using HttpPostedFileBase and then invoking SaveAs method but I do not know how to do it.