up vote 0 down vote favorite
share [g+] share [fb]

I need do some quick and dirty logging and I was asked to write to a file.

I have done all the logging and now I need to save it somewhere on this Win Server 2008 Operating system.

Does anybody know what the output is in Win Server 2008 for the following line of code. string myPath=Environment.GetFolderPath(Environment.SpecialFolder.CommonApplicationData);

Thanks a lot.

link|improve this question
feedback

1 Answer

up vote 1 down vote accepted

Most likely it is

%systemdrive%\ProgramData

...which is probably

C:\ProgramData

unless Windows 2008 was installed on a drive other than C: (uncommon). Part of the reason Environment.SpecialFolder exists is so we don't have to think about these things.

http://msdn.microsoft.com/en-us/library/system.environment.specialfolder.aspx

link|improve this answer
I just tested and I confirm that it is C:\ProgramData – Pierre-Alain Vigeant Sep 17 '09 at 20:02
feedback

Your Answer

 
or
required, but never shown