How to get directory of App_Data ?

  • Thread starter Thread starter Polaris
  • Start date Start date
P

Polaris

Hi Experts:

I'm using ASP.NET 2.0.

Is there a way to get the directory (full path) of the "App_Data" foler at
runtime ?

Thanks in Advance!
Polaris
 
Polaris said:
I'm using ASP.NET 2.0.

Is there a way to get the directory (full path) of the "App_Data"
foler at runtime ?
path=System.IO.Path.Combine(AppDomain.CurrentDomain.BaseDirectory,"App_data")

Thanks in Advance!
Polaris
 
Back
Top