vote up 2 vote down star

Hi folks,

i have installed my own custom Windows Service. I need to find out the physical path, where the service exists.

eg.

log4net.Config.XmlConfigurator.Configure(
    new System.IO.FileInfo(<insert path here> + "log4net.config"));

Any ideas?

flag

77% accept rate

3 Answers

vote up 2 vote down check
Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location)
link|flag
Nope - this isn't correct. It returns the location/path AND the exe name.... ???? – Pure.Krome Nov 5 at 4:59
How about now ? – Alex Reitbort Nov 5 at 6:49
How does that compare to my suggested answer? just another way but will also work? – Pure.Krome Nov 5 at 7:37
Check MSDN: AppDomain.CurrentDomain.BaseDirector - Gets the base directory that the assembly resolver uses to probe for assemblies. Assembly.GetExecutingAssembly().Location - returns the path and name of currently executing assembly. – Alex Reitbort Nov 5 at 14:54
Awesome - thanks :) – Pure.Krome Nov 5 at 22:56
vote up 0 vote down

Not sure if this is the best answer ... but ...

AppDomain.CurrentDomain.BaseDirectory

that worked ...

Works, but not the best answer :)

link|flag
vote up 0 vote down

System.Environment.CurrentDirectory?

Actually the above doesn't work but this does:

string servicePath = System.IO.Path.GetDirectoryName(
    System.Reflection.Assembly.GetExecutingAssembly().Location);
link|flag
I think all services are started in %WINDIR%\system32 – Luke Quinane Nov 5 at 0:01
Yep, hence my edit. – Wim Hollebrandse Nov 5 at 0:23
Nope - also not right. That's the path + filename.... :( – Pure.Krome Nov 5 at 5:00
Sure, but once you get that, you can get the path using the GetDirectoryName static method o the Path class in System.IO. – Wim Hollebrandse Nov 5 at 6:56
Hmm. ok .. is that better than my suggested answer? or are they both the same thing .. ?? – Pure.Krome Nov 5 at 7:36

Your Answer

Get an OpenID
or

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