vote up 1 vote down star
1

I'm adapting a program to run as a service, and the first thing it does is open a local configuration file, but it doesn't exist because I don't know what is the current directory.

flag

2 Answers

vote up 0 vote down

Calling GetCurrentDirectory at the service entry point returns "C:\WINDOWS\system32". After setting it to the executable's directory with SetCurrentDirectory everything worked as expected.

link|flag
But, why the system is setting current directoy to windows\system32 initially .. ?? – Vadi Dec 3 at 10:48
vote up 2 vote down

The current working directory is the location of the executable of the service, unless modified using the win32 API call SetCurrentDirectory

link|flag

Your Answer

Get an OpenID
or

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