There are no reviews yet. Be the first to send feedback to the community and the maintainers!
Repository Details
This is an assignment from Norges Yrkesakademi. Create an MVC website that acts as a file archive. You need at least two pages. One to upload files and one to view all files. The storage component must read the configuration from AppSettings in web.config and choose the correct storage method. It must be able to read and retrieve files based on file name and category. You will only implement a local storage method. The files must be saved in a separate folder ‘Archive‘ under ‘AppData’. Subfolders represent categories. The page for viewing files must display all files from the Archive folder, grouped by categories (subfolders). Each file must have a download-link. On the page for upload files it should be possible to upload multiple files at once. When uploading files, the user must select an existing category or create a new one. The files are stored in the correct subfolder according to category. If there is a new category, a new subfolder must be created.