My first decision was whether to store images in a database or file system and after some research I have chosen to do file system.
I need this to scale horizontally by acquiring more web servers as images increase so I will need to store the network/internet location of an image somewhere so I can get to it whatever web server it may be on.
I have what I need in theory but I do not know how to take a file and save it on a remote server. Specifically what is the best way to do this? Are UNC paths an option?
Just to be clear, I have already got the image server side, just need to send it/save it to any web server of my choice.
Locally you can just File.Copy(). Otherwise you have to upload them using FTP:
In order to retrieve it, you have to know the IP/hostname of your server and the final public path of your file.