Is there a way to get to sitecore settings through code.

The specific setting I'm interested in is the data Folder path.

link|improve this question

feedback

1 Answer

up vote 6 down vote accepted

Yes. Look at the Sitecore.Configuration.Settings class (which is your entry point to the Sitecore settings), and use the static DataFolder property:

string dataFolder = Sitecore.Configuration.Settings.DataFolder;
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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