.net - Access App_Data in WCF service -


How to access the App_Data folder in the WCF service?

I have placed an XSLT file and I am not able to find the path.

You need to use the hosting environment. Application physical path:

  string myXsltFilename = Path.Combine (Hosting enterprise. Professional path, "App_Data", "my.xslt");  

Comments