How to access App_Data folder in WCF service?

I have placed a xslt file and I am not able to find the path.

link|improve this question

61% accept rate
feedback

1 Answer

up vote 9 down vote accepted

You need to use HostingEnvironment.ApplicationPhysicalPath:

string myXsltFilename = Path.Combine(HostingEnvironment.ApplicationPhysicalPath, "App_Data", "my.xslt");
link|improve this answer
You should use the static methods on the Path class when working with paths. – casperOne Jan 26 '09 at 17:10
Possibly, but every MSDN article I've ever seen using this technique always uses a string literal for App_Data. – Steven Robbins Jan 26 '09 at 17:22
1  
HostingEnvironment.MapPath() combines the two. There is no constant for App_Data however so you are stuck with hard coding that. Not that it can change though. – Maurice Jan 26 '09 at 18:17
1  
I think casper was talking about Path.Combine(str1,str2,str3,...) – Ronnie Overby Feb 16 '11 at 19:52
1  
Thanks for the random, commentless downvote, whoever that was :-) – Steven Robbins Aug 12 '11 at 8:19
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.