vote up 0 vote down star

I can't seem to find a definitive answer/ example on how I can log to a file in C:\Documents and Settings\All Users\Application Data\CompanyName\ApplicationName\Logs\app.log

I don't want to "hardcode" the path in the app.config and would rather use Environment.SpecialFolder.CommonApplicationData

Can anyone help me with this?

Thanks.

flag

63% accept rate

2 Answers

vote up 1 vote down check

Yes, take a look at my answer to this question. It explains in detail how to configure this path setup in log4net configuration.

link|flag
Interesting approach. – RichardOD Oct 28 at 14:44
vote up 0 vote down

One way:

log4net.Repository.Hierarchy.Hierarchy hierarchy = (log4net.Repository.Hierarchy.Hierarchy)log4net.LogManager.GetRepository(); 
var appenders = hierarchy.GetAppenders();
  foreach (var appender in appenders)
  {
    FileAppender fileAppender = appender as FileAppender;
    if (fileAppender != null)
    {
      fileAppender.File = Path.Combine(Environment.SpecialFolder.CommonApplicationData, "myLogFile.log");
      fileAppender.ActivateOptions();
    }
  }
link|flag

Your Answer

Get an OpenID
or

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