In ASP.Net there is the app_data folder which is not accessible to users via the web. I would like to store a file in this folder, and read from this file by using a class that I have in the App_Code folder.
Keep in mind that the current working directory here is going to be a directory such as "c:\","c:\windows\system32\", etc. and not the application directory. So something like "../App_Data/somefile" does not work.
There has to be something simple that I overlooked on how to access files in the App_Data folder programatically
How can I do this?