Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

My NLog targets is like this:

<targets>
  <target xsi:type="Console" name="console" 
    layout="${longdate}|${level}|${message}" />
  <target xsi:type="File" name="ErrorLog" fileName="${basedir}/error.txt"
          layout="${longdate}
          Trace: ${stacktrace} 
          ${message}" />
  <target xsi:type="File" name="AccessLog" fileName="${basedir}/access.txt"
          layout="${shortdate} | ${message}" />
</targets>

But this causes problems if the user isn't an admin on their machine, because they will not have write access to "Program Files". How can I get something like %AppData% to NLog instead of BaseDir?

share|improve this question

3 Answers

up vote 27 down vote accepted

you're looking for the nlog special folders.

http://nlog-project.org/lr.specialfolder.html


Example:

...fileName="${specialfolder:folder=ApplicationData}/Program/file.txt"...
share|improve this answer
Yeah, but how do I use it? I've already tried, fileName="${ApplicationData}/RentalEase/access.txt" and it fails silently. – Malfist Jan 4 '10 at 16:02
I don't remember off the top of my head, but it should look like this: ${specialfolder:folder=SPECIALFOLDERNAME} – Oren Mazor Jan 4 '10 at 16:10
That doesn't work, says it's invalid. – Malfist Jan 4 '10 at 16:12
${specialfolder:folder=ApplicationData} – Malfist Jan 4 '10 at 16:13
I missread that, thought you had a '.' between specialfolder and folder instead of a colon – Malfist Jan 4 '10 at 16:15

Oren's answer should be the right answer. However, for the life of me I couldn't get it to work with my .NET 4.0 website using nLog 2.0.0.0. I ended up using simply

fileName="${basedir}app_data\logs\${shortdate}.log" 
share|improve this answer

${specialfolder:ApplicationData} also works

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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