asp.net - Avoid application reset when deleting a folder -


i'm having bit of trouble asp.net mvc project.

the users can upload images, stored id in database, , files stored in /files/images/id/

upon deleting images again, delete folder /files/images/id (that's id folder being deleted)

however when deleting folder under project, application resets, thereby losing session , throwing users off.

is there way mark path asp.net doesn't reset upon changes being made path ?

it's simple. asp.net application should not performing file write or modify operations within paths of asp.net application. use different path store uploads.


Comments

Popular posts from this blog

c++ - Function signature as a function template parameter -

algorithm - What are some ways to combine a number of (potentially incompatible) sorted sub-sets of a total set into a (partial) ordering of the total set? -

How to call a javascript function after the page loads with a chrome extension? -