How can I find out the folder where the windows service .exe file is installed dynamically?
Path.GetFullPath(relativePath);
returns a path base
Try this:
AppDomain.CurrentDomain.BaseDirectory
(Just like here: How to find windows service exe path)