I have a web-application built with mvc 4, and I want to allow users to upload files. Most of these files are documents(pdf, word etc). I decided to store the files on the server in separated folders (folder per user) and have data in the database on what files are where on the server. The webapplication runs in windows azure (website - Standard) environment.
I'm not sure whether I should store the user files in the (standard MVC folder structure) Content folder or App_Data folder, or somewhere else.
Help is greatly appreciated!