Path of files under App_Data


If you are creating a ASP.NET website and there are some files under the ASP.NET App_Data folder which you want to access from the code, here is how to do it nicely:

 

string path = System.IO.Path.GetFullPath(System.Web.Hosting.HostingEnvironment.MapPath(“~/App_Data/Your_File.xlsx”));

 

Hope this short piece of code will help someone in need.